#!/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
}