From 84674da173dc629325926488a0351fe3c4c88766 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 28 Oct 2017 21:14:42 -0700 Subject: [PATCH] use cmd_exists and fork --- .xsession | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/.xsession b/.xsession index b402817..8ddaf1d 100755 --- a/.xsession +++ b/.xsession @@ -1,5 +1,17 @@ #!/bin/sh +cmd_exists () { + if which "$1" >/dev/null 2>&1; then + return 0; + else + return 1; + fi; +} + +fork () { + ( "$@" >/dev/null 2>&1 & ) +} + echo "Starting new session" DATE=$(date "+%Y%m%d_%H%M%S") @@ -44,36 +56,38 @@ if [ -e ~/.Xauthority ]; then cp -f .Xauthority .Xauthority.bak fi -if [ -x /usr/bin/xscreensaver -a -e ~/.xscreensaver ]; then - ( XENVIRONMENT=~/.xscreensaver /usr/bin/xscreensaver >/dev/null 2>&1 &) -elif [ -x /usr/bin/xautolock ]; then - (/usr/bin/xautolock -notifier true -bell 0 >/de/vnull 2>&1 &) +if cmd_exists slock && cmd_exists xautolock; then + fork xautolock -notifer true -bell 0 -locker slock; +elif cmd_exists xscreensaver && [ -e ~/.xscreensaver ]; then + fork XENVIRONMENT=~/.xscreensaver /usr/bin/xscreensaver; +elif cmd_exists xautolock; then + fork xautolock -notifer true -bell 0; fi; -if which redshift >/dev/null 2>&1; then - (redshift >/dev/null 2>&1 &) +if cmd_exists redshift; then + fork redshift; fi; -if which mopidy >/dev/null 2>&1 && [ -e ~/.config/mopidy/mopidy.conf ]; then - (mopidy > /dev/null 2>&1 & ); -elif which mpd >/dev/null 2>&1 && [ -e ~/.mpdconf ]; then - (mpd >/dev/null 2>&1 &); +if cmd_exists mopidy && [ -e ~/.config/mopidy/mopidy.conf ]; then + fork mopidy; +elif cmd_exists mpd && [ -e ~/.mpdconf ]; then + fork mpd; MPD_HOST=$(awk '/^bind_to_address/{print $2}' ~/.mpdconf|sed "s|~|$HOME|; s/^\"//; s/\"$//; "); export MPD_HOST; fi; -if [ -x /sbin/iw ] && which nm-applet >/dev/null 2>&1 && /sbin/iw list|grep -q '^Wiphy'; then - ( nm-applet > /dev/null 2>&1 & ); +if [ -x /sbin/iw ] && cmd_exists nm-applet && /sbin/iw list|grep -q '^Wiphy'; then + fork nm-applet; fi; -if [ -x /usr/bin/i3 ]; then +if cmd_exists i3; then if [ -x ~/.config/i3/build_config.sh ]; then ~/.config/i3/build_config.sh; fi; exec /usr/bin/i3; else for prog in awesome ion3 openbox stterm st rxvt rxvt-unicode xterm; do - if which $prog >/dev/null 2>&1; then + if cmd_exists $prog; then exec $(which $prog) fi done; -- 2.39.2