8 lines
212 B
Bash
8 lines
212 B
Bash
#!/bin/zsh
|
|
export PATH="$DOTWRYN/bin/$(hostnamectl --static):$PATH"
|
|
|
|
command -v kitty >/dev/null 2>&1 \
|
|
&& export TERMINAL=$(which kitty)
|
|
|
|
for SCRIPT in $(find /etc/x11/xinit/xinitrc.d); do source $SCRIPT; done
|