aboutsummaryrefslogtreecommitdiff
path: root/scripts/checktodo
blob: e0c1eebbf9c32dff4e154ad7e461e61b0e92ad4b (plain)
1
2
3
4
5
6
7
8
9
10
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