8 lines
117 B
Bash
8 lines
117 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f ~/.bash_env ]; then
|
|
. "$HOME"/.bash_env
|
|
fi
|
|
|
|
[ "$(tty)" = "/dev/tty1" ] && exec sway
|