Move Tmux automatic load from ZSH to Foot

This commit is contained in:
Fabio Scotto di Santolo
2025-08-29 00:06:35 +02:00
parent 3f76100964
commit c461bcf1fd
8 changed files with 12 additions and 10 deletions

0
zsh/.profile.d/cargo.sh Normal file → Executable file
View File

0
zsh/.profile.d/golang.sh Normal file → Executable file
View File

0
zsh/.profile.d/java.sh Normal file → Executable file
View File

0
zsh/.profile.d/mise.sh Normal file → Executable file
View File

5
zsh/.profile.d/tmux.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env zsh
if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
tmux attach-session -t default || tmux new-session -s default
fi

0
zsh/.profile.d/zoxide.sh Normal file → Executable file
View File

View File

@@ -84,6 +84,3 @@ alias userlist="cut -d: -f1 /etc/passwd | sort"
alias ip='ip -color'
alias stow='stow -d $DOTFILES '
if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
tmux attach-session -t default || tmux new-session -s default
fi