6 lines
61 B
Bash
6 lines
61 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
if pidof picom; then
|
||
|
killall picom
|
||
|
fi
|