7 lines
189 B
Bash
Executable File
7 lines
189 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
set +e
|
|
|
|
ps aux | grep wlsunset | grep -v swayidle | grep -v restart | grep -v grep | awk '{print $2}' | xargs sudo kill
|
|
|
|
nohup wlsunset -T 3501 -t 3500 >> /dev/null 2<&1 & |