dotwryn/config/xinitrc.common

8 lines
212 B
Plaintext
Raw Normal View History

2022-02-06 07:15:14 +00:00
#!/bin/zsh
2022-08-23 03:27:20 +00:00
export PATH="$DOTWRYN/bin/$(hostnamectl --static):$PATH"
2022-02-06 07:15:14 +00:00
2022-11-28 23:01:50 +00:00
command -v kitty >/dev/null 2>&1 \
&& export TERMINAL=$(which kitty)
2022-02-06 07:15:14 +00:00
2022-11-28 23:01:50 +00:00
for SCRIPT in $(find /etc/x11/xinit/xinitrc.d); do source $SCRIPT; done