mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 11:00:27 +10:00
8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
if pgrep -x "compton" > /dev/null
|
|
then
|
|
killall compton
|
|
else
|
|
compton -b --config ~/.config/awesome/compton.conf
|
|
fi
|