Skip to content
Snippets Groups Projects
Commit 161d473e authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

Check if compton is running for the current user

parent 9cfbd788
No related branches found
No related tags found
No related merge requests found
#!/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
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment