tmux.conf

tmux.conf

端末に透明な背景を維持しながら、非アクティブなtmuxウィンドウを暗くすることはできますか?

非アクティブ状態をぼかす tmux.conf 部分は次のとおりです。

## FROM https://stackoverflow.com/questions/25532773/change-background-color-of-active-or-inactive-pane-in-tmux
#set inactive/active window styles
set -g window-style 'fg=colour247,bg=colour236'
set -g window-active-style 'fg=colour250,bg=black'

# set the pane border colors 
set -g pane-border-fg colour235
set -g pane-border-bg colour238
set -g pane-active-border-fg colour236
set -g pane-active-border-bg colour250

ただし、この設定を使用すると端末の透明性が失われます。

GNOME端末を使用しています

ベストアンサー1

以下は、これを行うサンプルスニペットです。

また、暗くするには、vimhi Normalの背景を空にするように変更するか、既に空のテーマを使用できます。私のカスタム Nord

上記のテーマを使用している場合は、NordREADME.mdの指示に従って端末の背景色を設定する必要があります。

tmux.conf

######### THEME  ##########
set -g status-style fg=white,bg=brightblack
setw -g clock-mode-colour cyan

set -g mode-style bg=brightcyan,fg=black
set -g message-style bg=brightblack,fg=cyan
set -g message-command-style bg=brightblack,fg=cyan

set -g status-left '#{?pane_synchronized, ¤ ,}#{?window_zoomed_flag, ↕ ,}[#S-#{window_active_clients}]'
set -g status-right '#H'

path="#(if [[ $HOME == #{pane_current_path} ]]; then echo \"~\" ; else echo #{b:pane_current_path}; fi)"

set -g pane-border-style fg=brightblack,bg=black
set -g pane-active-border-style fg=blue,bg=black
set-window-option -g window-active-style bg=terminal
set-window-option -g window-style bg=black

set-window-option -g window-status-style bg=default,fg=default
set-window-option -g window-status-current-style bg=default,fg=cyan
set-window-option -g window-status-activity-style bg=default,fg=yellow
set-window-option -g window-status-separator ""
set-window-option -g window-status-current-format " $path "
set-window-option -g window-status-format " $path "

出力例

おすすめ記事