diff --git a/svw-stop b/svw-stop deleted file mode 100644 index aa74a52..0000000 --- a/svw-stop +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env sh - -stop_file="/tmp/stop-select-videos-to-watch" - -xargs kill < "$stop_file" -rm $stop_file diff --git a/svw-toggle b/svw-toggle deleted file mode 100644 index fd8673a..0000000 --- a/svw-toggle +++ /dev/null @@ -1,11 +0,0 @@ -#!/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