2024-05-07 16:38:40 -06:00
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
|
|
# 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 09:41:26 -06:00
|
|
|
[[ ${TERM} =~ tmux ]] && [ ! ${DISPLAY} ] && export DISPLAY=:0
|
2024-05-07 16:38:40 -06:00
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
|
return 0
|