comptonを使用してubuntuでi3を実行します(すべて最近インストールされました)。
非アクティブなウィンドウを暗くするためにcomptonを使用したいと思います。inactive-dim = 0.2
現在はほとんどうまく機能しています。問題は、同じ画面で複数の端末を実行している場合は、すべて暗くても明るいことです。非アクティブ端末は暗くなりません。
私はこれがcomptonが何かがアクティブであるかどうかを判断する方法に関連していると思います。複数のクロムウィンドウや原子ウィンドウなどを実行でき、うまく動作します。ターミナルランチャーの設定に関する提案はありますか? (現在i3-sensible-terminalのみがgnome-terminalを起動するために使用されます)。
答え1
以下を追加してみてくださいcompton.conf
(picomでも動作します):
detect-transient = false
detect-client-leader = false
Fromman compton
の同等のインラインオプションのエントリ:
--detect-transient Use WM_TRANSIENT_FOR to group windows, and consider windows in the same group focused at the same time. --detect-client-leader Use WM_CLIENT_LEADER to group windows, and consider windows in the same group focused at the same time. WM_TRANSIENT_FOR has higher priority if --detect-transient is enabled, too.