checking the existence of some commands
This commit is contained in:
parent
2a7f2ae70b
commit
62890e057d
2 changed files with 6 additions and 5 deletions
9
.xinitrc
9
.xinitrc
|
@ -1,13 +1,14 @@
|
||||||
[ -f /etc/xprofile ] && . /etc/xprofile
|
[ -f /etc/xprofile ] && . /etc/xprofile
|
||||||
[ -f ~/.xprofile ] && . ~/.xprofile
|
[ -f ~/.xprofile ] && . ~/.xprofile
|
||||||
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
|
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
|
||||||
/usr/bin/xcompmgr &
|
|
||||||
/usr/bin/xscreensaver -no-splash &
|
hash xcompmgr 2>/dev/null && xcompmgr &
|
||||||
eval $(/usr/bin/gpg-agent --daemon --enable-ssh-support --write-env-file "${HOME}/.gpg-agent-info")
|
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
|
DEFAULT_SESSION=awesome
|
||||||
case "$1" in
|
case "$1" in
|
||||||
default|awesome|"")
|
awesome|default|"")
|
||||||
exec awesome
|
exec awesome
|
||||||
;;
|
;;
|
||||||
qtile)
|
qtile)
|
||||||
|
|
2
.zshrc
2
.zshrc
|
@ -51,6 +51,6 @@ alias grep='grep -n --color=auto'
|
||||||
alias j='jobs'
|
alias j='jobs'
|
||||||
alias ne='emacs'
|
alias ne='emacs'
|
||||||
alias df='df -h'
|
alias df='df -h'
|
||||||
alias top='TERM=screen-256color htop'
|
|
||||||
alias weechat='TERM=screen-256color weechat'
|
alias weechat='TERM=screen-256color weechat'
|
||||||
alias lock='xscreensaver-command --lock'
|
alias lock='xscreensaver-command --lock'
|
||||||
|
hash htop 2>/dev/null && alias top='TERM=screen-256color htop'
|
||||||
|
|
Loading…
Reference in a new issue