01472b6d05
The custom bin path was set in multiple places. Each time, the line was identical and supposed the use of a /bin/sh emulation with a common extension. To reduce duplicated code and support other platforms, the custom bin path is now set in a dedicated script that can be source'd.
14 lines
229 B
Text
Executable file
14 lines
229 B
Text
Executable file
[ -f ~/.xprofile ] && . ~/.xprofile
|
|
[ -f ~/.setpath.sh ] && . ~/.setpath.sh
|
|
|
|
DEFAULT_SESSION=qtile
|
|
|
|
case "$1" in
|
|
awesome)
|
|
exec awesome
|
|
;;
|
|
qtile)
|
|
exec qtile 2>/tmp/qtile.err.log
|
|
;;
|
|
*) exec $DEFAULT_SESSION ;;
|
|
esac
|