12 lines
185 B
Bash
12 lines
185 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
|
XDG_CURRENT_DESKTOP=sway exec dbus-run-session sway
|
|
exec startx
|
|
fi
|
|
|