康普顿调光未激活不适用于终端

康普顿调光未激活不适用于终端

在 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.

相关内容