From bf7347380207d80183ce80ae6547ef08fa579c6a Mon Sep 17 00:00:00 2001 From: Polesznyák Márk Date: Sat, 29 Nov 2025 01:45:07 +0100 Subject: feat: add scripts, TARGET variable for Makefile --- scripts/checktodo | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 scripts/checktodo (limited to 'scripts/checktodo') diff --git a/scripts/checktodo b/scripts/checktodo new file mode 100755 index 0000000..e0c1eeb --- /dev/null +++ b/scripts/checktodo @@ -0,0 +1,11 @@ +#!/bin/bash + +if [ -f "./TODO.md" ]; then + FILE="./TODO.md" +elif [ -f "./TODO.txt" ]; then + FILE="./TODO.txt" +else + FILE="$HOME/TODO.md" +fi + +nvim $FILE -- cgit v1.2.3