2022-05-08 17:02:59 +07:00

12 lines
131 B
Bash
Executable File

#!/bin/zsh
for conf in ~/.config/zsh/*.zsh; do
source $conf
done
#start sway
if [ "$(tty)" = "/dev/tty1" ]; then
exec sway
fi