Fluxboxをウィンドウマネージャーとして使用していますが、コンプトンをコンポジターとして使用したいと考えています。しかし、FluxboxのタスクバーをComptonの(影)効果から除外することはできません。
ComptonにFluxboxタスクバーを無視させるにはどうすればよいですか、特にシャドウ効果のために?現在のように、タスクバーは常に非アクティブなウィンドウと同じ外観を持っています。
これは私がcompton.confで得たものです:
# Shadow
shadow = true; # Enabled client-side shadows on windows.
no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
no-dnd-shadow = true; # Don't draw shadows on DND windows.
clear-shadow = true; # Zero the part of the shadow's mask behind the window (experimental).
shadow-radius = 10; # The blur radius for shadows. (default 12)
shadow-offset-x = 5; # The left offset for shadows. (default -15)
shadow-offset-y = 5; # The top offset for shadows. (default -15)
shadow-exclude = [
"! name~=''",
"name = 'Notification'",
"name = 'Plank'",
"name = 'Docky'",
"name = 'Kupfer'",
"name = 'xfce4-notifyd'",
"name *= 'VLC'",
"name *= 'compton'",
"name *= 'Chromium'",
"name *= 'Chrome'",
"class_g = 'Conky'",
"class_g = 'Kupfer'",
"class_g = 'Synapse'",
"class_g ?= 'Notify-osd'",
"class_g ?= 'Do'",
"class_g ?= 'Cairo-dock'",
"class_g ?= 'Xfce4-notifyd'",
"class_g ?= 'Xfce4-power-manager'",
"_GTK_FRAME_EXTENTS@:c"
];
# Fading
#fading = true; # Fade windows during opacity changes.
#fade-delta = 5; # The time between steps in a fade in milliseconds. (default 10).
#fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028).
#fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03).
# no-fading-openclose = true; # Fade windows in/out when opening/closing
#detect-rounded-corners = true;
### highlighted top window rest dimmed
inactive-dim = 0.2;
inactive-dim-fixed = true;
# Window type settings
wintypes:
{
tooltip = { fade = true; shadow = true; };
};
そして、コンプトンを起動するために使用されるコマンドは次のとおりです。
compton -C -G --config ~/.config/compton.conf
「ロール」ルールを使用できます。
私の調子はどうですか:
shadow-exclude =
[
"name = 'Notification'",
"class_g = 'Conky'",
"class_g ?= 'Notify-osd'",
"class_g = 'Cairo-clock'",
"role = 'fluxbox-toolbar'",
"_GTK_FRAME_EXTENTS@:c"
];
tl; dr
~/.fluxbox/init
で、次を設定します。
session.screen0.toolbar.alpha: 255
詳細
同じ問題がありました。コンプトンの設定no-dock-shadow
(つまり、パラメーター-C
)は、Fluxboxのツールバーに影響しないようです。 man compton
は、ウィンドウプロパティ_NET_WM_WINDOW_OPACITY
が透明度を設定するために尊重されることを数回示唆します。
compton
が開始された状態で、以下を実行して、正常に機能していることを確認しました。 xprop
とcompton-trans
には、クリックすることでウィンドウを指定するインタラクティブな機能があります。
$ xprop
(select toolbar)
_NET_WM_WINDOW_OPACITY(CARDINAL) = 2139062143
WM_WINDOW_ROLE(STRING) = "fluxbox-toolbar"
$ compton-trans 100
(select toolbar)
$ xprop
(select toolbar)
_NET_WM_WINDOW_OPACITY(CARDINAL) = 4294967295
WM_WINDOW_ROLE(STRING) = "fluxbox-toolbar"
数値の変化に注意してください。 compton-trans
がツールバーの透明度を設定できたため、Fluxboxの設定で不透明度を変更して、後でComptonが取得できるようになりました。