add unclutter to x init if it exists

This commit is contained in:
Marty Oehme 2019-03-15 13:44:48 +01:00
parent 46f0429582
commit d0820777f6

View file

@ -48,6 +48,8 @@ setxkbmap -option terminate:ctrl_alt_bksp
# Needs xcape package installed. https://github.com/alols/xcape # Needs xcape package installed. https://github.com/alols/xcape
type xcape >/dev/null 2>&1 && xcape -e 'Control_L=Escape' type xcape >/dev/null 2>&1 && xcape -e 'Control_L=Escape'
# if unclutter exists start it
type unclutter >/dev/null 2>&1 && unclutter &
# if compton exists then we can start it as our compositor # if compton exists then we can start it as our compositor
type compton >/dev/null 2>&1 && compton & type compton >/dev/null 2>&1 && compton &
# same deal with flashfocus as our active window indicator # same deal with flashfocus as our active window indicator