checking the existence of some commands

This commit is contained in:
Rodolphe Breard 2015-02-09 21:47:17 +01:00
parent 2a7f2ae70b
commit 62890e057d
2 changed files with 6 additions and 5 deletions

View file

@ -1,13 +1,14 @@
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
/usr/bin/xcompmgr &
/usr/bin/xscreensaver -no-splash &
eval $(/usr/bin/gpg-agent --daemon --enable-ssh-support --write-env-file "${HOME}/.gpg-agent-info")
hash xcompmgr 2>/dev/null && xcompmgr &
hash xscreensaver 2>/dev/null && xscreensaver -no-splash &
hash gpg-agent 2>/dev/null && eval $(gpg-agent --daemon --enable-ssh-support --write-env-file "${HOME}/.gpg-agent-info")
DEFAULT_SESSION=awesome
case "$1" in
default|awesome|"")
awesome|default|"")
exec awesome
;;
qtile)