diff options
Diffstat (limited to '.profile')
| -rw-r--r-- | .profile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ export PATH=~/bin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:~/go/bin export XDG_RUNTIME_DIR=/run/user/1000 -[ "$SHELL" = /bin/ash ] && export ENV=~/.shrc +case "$SHELL" in +*/ash) export ENV=~/.shrc ;; +*/bash) . ~/.bashrc ;; +esac [ "$(tty)" = /dev/tty1 ] && exec dbus-run-session -- sway |
