about summary refs log tree commit diff
path: root/scripts/toggle-compton.sh
blob: 7c36b2f9d1044a35cc0d2240c0d2771cefb4bf9a (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh

if ! pgrep compton
then
    compton -b --config "$XDG_CONFIG_HOME/compton.conf"
else
    pkill compton
fi

Consider giving Nix/NixOS a try! <3