initial commit
This commit is contained in:
8
bspwm/toggle-picom.sh
Executable file
8
bspwm/toggle-picom.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
pid=$(pgrep -x picom)
|
||||
if [ -z "$pid" ]; then
|
||||
picom -b
|
||||
else
|
||||
kill $pid
|
||||
fi
|
||||
Reference in New Issue
Block a user