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 --- flashcards.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 flashcards.sh (limited to 'flashcards.sh') diff --git a/flashcards.sh b/flashcards.sh deleted file mode 100755 index 242d44a..0000000 --- a/flashcards.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -action=$(echo "make flashcards\nreset" | dmenu -i -p "action?") -if [ "$action" = "make flashcards" ]; then - confirm=$(echo "no\nyes" | dmenu -i -p "are you sure? screenshot names can overwrite others in media folder") - if [ "$confirm" = "yes" ]; then - cd /tmp/question_shots - combine.sh - cd final - cards.sh - cp *.png ~/.local/share/Anki2/Main/collection.media/ - thunar /tmp/question_shots/final & - echo "yay" | dmenu -p "done! import cards.txt into Anki. remember to reset if done" - fi -elif [ "$action" = "reset" ]; then - confirm=$(echo "no\nyes" | dmenu -i -p "are you sure? this action cannot be undone") - if [ "$confirm" = "yes" ]; then - rm -rf /tmp/question_shots/ - fi -fi -- cgit v1.2.3