From be35de785e659cc080dd902cf296b5ce270e2e3f Mon Sep 17 00:00:00 2001 From: not_a_robot06 Date: Sun, 6 Jul 2025 23:07:38 +0100 Subject: first proper version - use hyphens only for separation - only two scripts: one for screenshots and one for making the cards - add README - a little bit of error checking - TODO: if question or answer non existent, then don't break cards.txt --- question_shot.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 question_shot.sh (limited to 'question_shot.sh') diff --git a/question_shot.sh b/question_shot.sh deleted file mode 100755 index a511dec..0000000 --- a/question_shot.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -mkdir -p /tmp/question_shots -photoname=$(ls /tmp/question_shots | cut -d_ -f1 | uniq | dmenu -i -p "name of screenshots? (no underscores or hyphens)") -echo "$photoname" -photonumber=$(basename -a $(ls /tmp/question_shots/"$photoname"*) | cut -d_ -f2 | cut -d- -f1 | uniq | tac | dmenu -i -p "number?") - -type=$(echo "question\nanswer" | dmenu -i -p "question or answer?") -if [ "$type" = "question" ]; then - type=q -else - type=a -fi - -partnumber=$(ls /tmp/question_shots/"$photoname"_"$photonumber"-"$type"-* | tail -n1 | cut -d- -f3 | cut -d. -f1) -if [ -z "$partnumber" ]; then - partnumber=0 -else - partnumber=$(echo "$partnumber"+1 | bc) -fi - -scrot -s /tmp/question_shots/"$photoname"_"$photonumber"-"$type"-"$partnumber".png -- cgit v1.2.3