7 lines
81 B
Bash
Executable file
7 lines
81 B
Bash
Executable file
#!/bin/bash
|
|
if pgrep -x "compton" > /dev/null
|
|
then
|
|
killall picom
|
|
else
|
|
picom
|
|
fi
|