12 lines
131 B
Bash
Executable File
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
|
|
|