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

if ! pgrep compton >/dev/null 2>&1; then
	compton -b
else
	pkill compton
fi

Consider giving Nix/NixOS a try! <3