blob: 92ce061d0feb757ef51bbbe300dcb211456ae762 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# bash_profile
[[ -f ~/.profile ]] && source ~/.profile
[[ -f ~/.bashrc ]] && source ~/.bashrc
# start sway on tty 1
if test -z "$DISPLAY" && test /dev/tty1 = "$(tty)"
then
swayrun
fi
|