blob: ab83345e006eff70cdde75889a3709a93df08323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
# Environment Variables
export EDITOR="/bin/emacs"
# Auto-start sway on tty1
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
exec sway
fi
|