about summary refs log tree commit diff stats
path: root/pkgs/by-name/ne/neorg/functions/review.sh
blob: a0a9ab8d717487be45aedd37a79a3640f250bcb0 (plain) (blame)
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
}