min/fish_greeting.fish

8 lines
198 B
Fish
Raw Permalink Normal View History

2021-08-10 04:26:26 +02:00
function fish_greeting
if test -z "$TMUX"
echo (set_color red)"Not on tmux."(set_color normal)
else
tmux source "$HOME/.local/share/omf/themes/min/min.tmuxtheme"
end
end