launch tmux on opening terminal emulator on desktop

This commit is contained in:
Philipp 2024-07-09 22:42:27 +02:00
parent 2ff18bb9fc
commit 7dc3dfa532
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750

View file

@ -70,7 +70,12 @@ ZSH_THEME="obraun"
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
plugins=(git tmux)
# Spawn tmux shell if its my pc
if [ $HOST = "bodenheizung" ]; then
ZSH_TMUX_AUTOSTART=true
fi
source $ZSH/oh-my-zsh.sh