diff options
author | Patrick Simianer <pks@pks.rocks> | 2018-12-01 09:05:58 +0100 |
---|---|---|
committer | Patrick Simianer <pks@pks.rocks> | 2018-12-01 09:05:58 +0100 |
commit | 8a105269371ea200f653d810fc96dcd4fd6de5c6 (patch) | |
tree | b0728fdf023b8fac28611e19516495b1dbdadcdc /zsh | |
parent | c3d63961cd574e03732410ab2bea4e8e3d27599c (diff) | |
parent | 7c81cd61699858d99cb095fb9246059c25b54520 (diff) |
Merge branch 'master' of ssh://github.com/pks/dotfiles
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -227,11 +227,13 @@ case `hostname` in ;; *.uberspace.de) HOSTCOLOR_BG=green - HOSTCOLOR_FG=white + HOSTCOLOR_FG=black + alias tmux="tmux -f ~/.tmux.uberspace.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 { |