dotfiles/scripts/toggle-select-videos-to-wat...

12 lines
276 B
Bash
Raw Normal View History

2019-11-27 21:48:59 +01:00
#!/usr/bin/env sh
stop_file="/tmp/stop-select-videos-to-watch"
if [ ! -e $stop_file ]; then
notify-send "Looking" "Select Video to Watch"
dash $SCRIPTS/select-videos-to-watch.sh
else
notify-send "Stop Looking"
dash $SCRIPTS/stop-select-videos-to-watch.sh
fi