dotwryn/zsh/rc.d/09.config-misc.zsh

14 lines
540 B
Bash
Raw Normal View History

#####################################################################
# not sure if this is needed anymore since I've moved to alacritty,
# but leaving this here since it was obnoxious to find
which kitty &>/dev/null \
&& kitty + complete setup zsh | source /dev/stdin
# many tmux workflows like to interact with the X-server; however,
# the tmux sessions frequently start before the X-session
2024-08-16 15:41:26 +00:00
[[ ${TERM} =~ tmux ]] && [ ! ${DISPLAY} ] && export DISPLAY=:0
#####################################################################
return 0