diff options
Diffstat (limited to 'scripts/wlsunset-toggle')
| -rwxr-xr-x | scripts/wlsunset-toggle | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/wlsunset-toggle b/scripts/wlsunset-toggle deleted file mode 100755 index 7dcd06e..0000000 --- a/scripts/wlsunset-toggle +++ /dev/null @@ -1,10 +0,0 @@ -#! /usr/bin/env sh -# <LAT>|<LONG> -CORDS=$(cat $HOME/.config/home-cords || echo '') -LAT=$(echo $CORDS | cut -d '|' -f 1) -LONG=$(echo $CORDS | cut -d '|' -f 2) -if pidof wlsunset; then - pkill wlsunset -else - wlsunset -l $LAT -L $LONG & -fi |