8 lines
115 B
Bash
8 lines
115 B
Bash
|
#!/bin/bash
|
||
|
if pgrep -x "picom" > /dev/null
|
||
|
then
|
||
|
killall picom
|
||
|
else
|
||
|
picom -b --config ~/.config/i3/picom.conf
|
||
|
fi
|