1 2 3 4 5 6 7 8 9 10 11 12
#!/usr/bin/env dash review0start() { for project in $(list0list_all_contexts_newline); do if [ -f "%NEORG_REVIEW_PATH/$project.lock" ]; then msg "Reviewing '$project'" notify-send "Neorg" "Reviewing '$project'" firefox -P "$project" rm "%NEORG_REVIEW_PATH/$project.lock" fi done }