diff options
author | Patrick Simianer <pks@pks.rocks> | 2019-09-04 08:30:00 +0200 |
---|---|---|
committer | Patrick Simianer <pks@pks.rocks> | 2019-09-04 08:30:00 +0200 |
commit | 1a3834480e6bab4f3e68e52f7a9c7e56ef96752a (patch) | |
tree | 577ef4826ded628a1560a0c90917006f8ba3c46a /zsh | |
parent | 56c4affe6b7223147de447eaf21eeef0610dd7f5 (diff) |
tmux: cleaner
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -231,22 +231,22 @@ case `hostname -f` in *.uberspace.de) HOSTCOLOR_BG=green HOSTCOLOR_FG=black - alias tmux="tmux -f ~/.tmux.uberspace.conf" + alias tmux="tmux -f ~/.tmux/uberspace.conf" ;; *) HOSTCOLOR_BG=black HOSTCOLOR_FG=white - alias tmux="tmux -f ~/.tmux.default.conf" + alias tmux="tmux -f ~/.tmux/default.conf" # google cloud if [[ $(on_gcloud) == "yes" ]]; then HOSTCOLOR_BG=blue HOSTCOLOR_FG=white - alias tmux="tmux -f ~/.tmux.gcloud.conf" + alias tmux="tmux -f ~/.tmux/gcloud.conf" # aws elif [[ $(on_aws) == "yes" ]]; then HOSTCOLOR_BG=yellow HOSTCOLOR_FG=black - alias tmux="tmux -f ~/.tmux.aws.conf" + alias tmux="tmux -f ~/.tmux/aws.conf" fi ;; esac |