mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-24 05:09:52 -05:00
14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# https://github.com/jaagr/polybar/wiki/User-contributed-modules
|
|
|
|
#The command for starting compton
|
|
#always keep the -b argument!
|
|
|
|
if pgrep -x "picom" > /dev/null
|
|
then
|
|
killall picom
|
|
else
|
|
picom -CGb --experimental-backend --config ~/.config/i3/picom.conf
|
|
fi
|