7 lines
113 B
Bash
Executable file
7 lines
113 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if pgrep -x "wlsunset" >/dev/null; then
|
|
pkill -x "wlsunset"
|
|
else
|
|
wlsunset -S 7:00 -s 21:00 &
|
|
fi
|