mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
9 lines
179 B
Bash
Executable File
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
|