mirror of
https://github.com/yusufipk/i3-config.git
synced 2026-09-11 10:56:11 +00:00
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
if pgrep -x "picom" > /dev/null
|
|
then
|
|
killall picom
|
|
else
|
|
picom -b --config ~/.config/i3/picom.conf
|
|
fi
|