Compare commits

...

9 Commits

Author SHA1 Message Date
inkch
74d0dbec99 tmux: put status bar on top (for working machines) 2024-01-16 20:25:02 +09:00
inkch
fdee563730 tmux: use bright white 2024-01-16 20:24:38 +09:00
inkch
aa7862efbf tmux: use bright white for status bar 2024-01-16 20:20:29 +09:00
inkch
e237fda347 tmux: fix color code 2024-01-16 20:18:21 +09:00
inkch
68e7e2fbd1 tmux: put status bar on top when nesting 2024-01-16 20:13:45 +09:00
inkch
125adbd844 tmux: tweaking ui colors 2024-01-16 20:11:27 +09:00
inkch
25556093dd tmux: tweaking ui colors 2024-01-16 19:22:13 +09:00
inkch
6c50a297f4 tmux: use nesting only on working machines 2024-01-16 19:20:52 +09:00
inkch
d3713d1b75 tmux: change UI color between working machines and others 2024-01-16 18:48:08 +09:00

View File

@@ -83,29 +83,35 @@ bind-key p run "xsel -o | tmux load-buffer - ; tmux paste-buffer"
# Aesthetic
###########################
# pane border
{{- if (or (eq .chezmoi.hostname "arch") (eq .chezmoi.hostname "buzz")) }}
set -g pane-active-border-style fg=yellow
{{- else }}
set -g pane-active-border-style fg=red
{{- end }}
# message/command bar
set -g message-command-style 'fg=#cccccc bg=#333333 bold'
set -g message-style 'fg=#cccccc bg=#333333 bold'
# status bar
set -g message-command-style 'fg=#eeeeee bg=#333333 bold'
set -g message-style 'fg=#eeeeee bg=#333333 bold'
set -g status off
set -g status-position bottom
set -g status-position top
set -g status-bg '#333333'
set -g status-fg '#cccccc'
set -g status-fg '#eeeeee'
set -g status-left ''
set -g status-right ''
set -g window-status-format ''
set -g window-status-current-format ''
{{- else }}
set -g pane-active-border-style fg=red
set -g message-command-style 'fg=#eeeeee bg=#5b7d78 bold'
set -g message-style 'fg=#eeeeee bg=#5b7d78 bold'
set -g status on
set -g status-position bottom
set -g status-bg '#5b7d78'
set -g status-fg '#eeeeee'
set -g status-right '#[bold][#H]'
set -g window-status-format ''
set -g window-status-current-format ''
{{- end }}
{{- if (or (eq .chezmoi.hostname "arch") (eq .chezmoi.hostname "buzz")) }}
###############################################
# local and nested remote tmux sessions
# - https://www.freecodecamp.org/news/tmux-in-practice-local-and-nested-remote-tmux-sessions-4f7ba5db8795/
@@ -118,17 +124,13 @@ bind -T root M-q \
set status-right '#[bold align=centre]DIVING'
bind -T off M-q \
set -u prefix \;\
set -u key-table \;\
set -u status off \;\
set status-right ''
# local and nested remote tmux sessions
###############################################
set -u prefix \;\
set -u key-table \;\
set -u status off \;\
set status-right ''
{{- if (or (eq .chezmoi.hostname "arch") (eq .chezmoi.hostname "buzz")) }}
#######################
# Plugins
#######################