Skip to content
Snippets Groups Projects

make-compton: Added grafical way of enabling and disabling compton.

Merged Frank requested to merge (removed):belenos into belenos
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
#!/bin/bash
#Check if compton is currently running.
case "$(pidof compton | wc -w)" in
case "$(pgrep -u $USER compton | wc -w)" in
0) COMPTON_RUNNING=false
;;
Loading