在 ubuntu 上執行 i3,使用 compton(所有最近安裝的)。
我想使用 compton 來調暗不活動的視窗。目前它大部分都運作得inactive-dim = 0.2
很好。問題是,當我在同一螢幕上運行幾個終端時,它們要么全暗,要么全亮——它不會使不活動的終端變暗。
我想這與 compton 如何確定某些東西是否處於活動狀態有關 - 我可以運行多個 chrome 視窗或原子視窗或其他任何東西,並且這些工作得很好。關於配置終端啟動器有什麼建議嗎? (目前僅使用 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.