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

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

Consider giving Nix/NixOS a try! <3