10 lines
86 B
Bash
10 lines
86 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if pgrep -x 'picom'; then
|
||
|
killall 'picom'
|
||
|
else
|
||
|
picom -b
|
||
|
fi
|
||
|
|
||
|
exit
|