diff options
Diffstat (limited to 'misc/bin/toggle-compton.sh')
-rwxr-xr-x | misc/bin/toggle-compton.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/misc/bin/toggle-compton.sh b/misc/bin/toggle-compton.sh new file mode 100755 index 0000000..91ebc4d --- /dev/null +++ b/misc/bin/toggle-compton.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +if [[ $(pgrep 'compton') ]] +then + pkill "compton" +else + compton -b --config "${XDG_CONFIG_HOME}/compton.conf" +fi |