clean up scripts
This commit is contained in:
18
.config/polybar/scripts/isrunning-offlineimap.sh
Normal file
18
.config/polybar/scripts/isrunning-offlineimap.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
case "$1" in
|
||||
--toggle)
|
||||
if [ "$(pgrep offlineimap)" ]; then
|
||||
pkill -f offlineimap
|
||||
else
|
||||
nohup offlineimap > /tmp/offlineimap.log &
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
if [ "$(pgrep offlineimap)" ]; then
|
||||
echo "#1 Online"
|
||||
else
|
||||
echo "#2 Offline"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user