diff options
author | Patrick Simianer <pks@pks.rocks> | 2018-10-30 12:01:45 +0100 |
---|---|---|
committer | Patrick Simianer <pks@pks.rocks> | 2018-10-30 12:01:45 +0100 |
commit | b24156c1e59ab014c6589f69ad853a43a208c686 (patch) | |
tree | 262123b1123304f2415bbd6176c5e30b2045f0f7 /zsh | |
parent | f5c8d5bb557b6fbcfced9d337ab80377aa3fdfe7 (diff) |
tmux
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -228,10 +228,12 @@ case `hostname` in *.uberspace.de) HOSTCOLOR_BG=green HOSTCOLOR_FG=black + alias tmux="tmux -f ~/.tmux.gcloud.conf" ;; *) HOSTCOLOR_BG=black HOSTCOLOR_FG=white + alias tmux="tmux -f ~/.tmux.default.conf" ;; esac @@ -243,11 +245,11 @@ if [[ $(on_gcloud) == "yes" ]]; then fi # aws -#if [[ $(on_aws) == "yes" ]]; then -# HOSTCOLOR_BG=yellow -# HOSTCOLOR_FG=black -# alias tmux="tmux -f ~/.tmux.aws.conf" -#fi +if [[ $(on_aws) == "yes" ]]; then + HOSTCOLOR_BG=yellow + HOSTCOLOR_FG=black + alias tmux="tmux -f ~/.tmux.aws.conf" +fi function chpwd { |