瀏覽代碼

Set _HOSTCOLOR_ env val and use it from tmux.conf

pull/2/head
10sr 9 年之前
父節點
當前提交
efee339525
共有 2 個文件被更改,包括 31 次插入4 次删除
  1. +24
    -2
      profile
  2. +7
    -2
      tmux.conf

+ 24
- 2
profile 查看文件

@@ -116,5 +116,27 @@ fi
###########################################
# Host colors

export _COLOR_FOREGROUND=
export _COLOR_BACKGROUND=
export _HOSTCOLOR_1=
export _HOSTCOLOR_2=
case "`hostname`" in
arch-aspireone)
_HOSTCOLOR_1=yellow
_HOSTCOLOR_2=black
;;
arch-mba)
_HOSTCOLOR_1=cyan
_HOSTCOLOR_2=black
;;
newkiwi)
_HOSTCOLOR_1=magenta
_HOSTCOLOR_2=white
;;
debian-vb-win7-opti)
_HOSTCOLOR_1=red
_HOSTCOLOR_2=white
;;
*)
_HOSTCOLOR_1=green
_HOSTCOLOR_2=black
;;
esac

+ 7
- 2
tmux.conf 查看文件

@@ -1,7 +1,12 @@
# tmux.conf

if "test -f $HOME/.tmux.conf.local" "source-file $HOME/.tmux.conf.local" \
"display-message \"$HOME/.tmux.conf.local not found\""
run-shell 'tmux set -g status-right "${USER}@`hostname` | #(tmux -V) "'

run-shell 'tmux set -g status-bg "$_HOSTCOLOR_1" >/dev/null'
run-shell 'tmux set -g status-fg "$_HOSTCOLOR_2" >/dev/null'
run-shell 'tmux set -g mode-bg "$_HOSTCOLOR_1" >/dev/null'
run-shell 'tmux set -g mode-bg "$_HOSTCOLOR_2" >/dev/null'
run-shell 'tmux set -g pane-active-border-fg "$_HOSTCOLOR_1" >/dev/null'

unbind C-b
set -g prefix C-z


Loading…
取消
儲存