5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

LinuxAdvent Calendar 2023

Day 16

tmux 非アクティブのウインドウペインの背景色を変更

Last updated at Posted at 2023-11-27

tmuxでウインドウ(窓)を複数のペイン(窓ガラス)に分割している時に、初期設定のままだとどれがアクティブなのかわかりにくいです。

非アクティブのウインドウペイン(窓ガラス)の背景色を変更することにより、見た目で判別しやすくなります。

調べたことをここにメモしておきます。

tmux-dim-inactive-panes.gif

やりかた

たくさんあるoptionsのうち、window-stylewindow-active-stylefg(foreground colour)とbg(background colour)を変更することにより実現できます。

fgは文字の色、bgは背景の色です。両方またはどちらか一方を調整することにより、お好みの色の組み合わせにします。

$HOME/.tmux.conf
# 非アクティブな窓ガラス
set -g window-style 'bg=#303030'

# アクティブな窓ガラス
set -g window-active-style 'bg=#000000'
$HOME/.tmux.conf
# 非アクティブな窓ガラス
set -g window-style 'fg=colour244,bg=colour234'

# アクティブな窓ガラス
set -g window-active-style 'fg=white,bg=black'

使える色

  • black, red, green, yellow, blue, magenta, cyan, white
  • (明るい色がサポートされている場合) brightred, brightgreen, brightyellow
  • 8ビットカラーの256色(colour0colour255
  • defaulttmuxのデフォルト)
  • terminal(ターミナルのデフォルト)
  • RGB#000000#ffffff

色の見本はWikipediaにいいのがありました。

さいごに

status line の色の変更にも取り組みました。もしよかったらご覧ください。

本記事は autoracex #259 の成果です。ありがとうございます。

toukon-qiita-macbook_20230912_091808.jpg

5
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?