Dr. Amr Osman 729079f422 x250
2019-03-13 05:12:45 +02:00

9 lines
179 B
Bash
Executable File

#!/bin/bash
if pgrep xflux > /dev/null
then
kill -9 $(pidof xflux) && notify-send "xflux" "xflux was killed"
else
auto-xflux && notify-send "xflux" "xflux is running"
fi