web-dev-qa-db-ja.com

コンプトン:不適切な影の表示(お気に入りの設定)?

Comptonコンポジットマネージャーのシャドウ表示で問題が発生しています。特定の状況では、影のフレームが適用されるウィンドウを超えて、目に見える境界線とその周りの透明なボックスのようなものを残します。

これは、Firefoxの自動スクロールポインターや上部に小さな矢印の付いたアドオンメニューなど、ウィンドウまたはフレームオーバーレイが完全に長方形ではないたびに発生するようです(下のスクリーンショットを参照してください)。私のウェブブラウザ以外にもこれらのような機会がいくつかありますが、現時点では特に何も覚えていません。

ビデオカードの問題を引き裂くため、コンプトンをXFCEデスクトップ環境のコンポジターとして使用する必要があります。これまでのところ、これらのシャドウの視覚的な問題を除き、非常に満足しています。

構成ファイルが最適にセットアップされていない可能性があると思ったので、オプションdetect-rounded-corners = true;それに、しかしそれは何の違いももたらさなかった。

この問題の解決策はありますか?また、一般的な設定のベースとして使用できるコンプトン構成はいくつかありますか?

enter image description here

現時点では、コンプトン構成ファイルは次のようになっています。

#--------------------------------
#-------Backend Settings:--------
#--------------------------------
backend = "glx";                 # Use GLX backend for rendering
vsync = "opengl";                # Use OpenGL to implement vsync
glx-swap-method = 3;             # Use a triple-buffer
Paint-on-overlay = true;         # Improves performance (usually) and reduces flickering
glx-no-stencil = true;           # Improves performance
glx-no-rebind-pixmap = true;     # Improves performance with rapid window changes, might not work with some drivers


#--------------------------------
#--------Shadow Settings:--------
#--------------------------------
shadow = true;                   # Enable drawing shadows on windows
shadow-radius = 8;               # The blur radius for shadows
shadow-offset-x = -8;            # The horizontal offset for shadows
shadow-offset-y = -8;            # The vertical offset for shadows
clear-shadow = true;             # Zero the part of the shadow's mask behind the window, may break some applications
no-dock-shadow = true;           # Do not draw shadows on docks/panels
no-dnd-shadow = true;            # Do not draw shadows on DND windows
shadow-exclude = [               # Do not draw shadows on these specific applications:
   #"! name~=''",
    "n:e:Notification",
    "n:e:Plank",
    "n:e:Docky",
    "g:e:Synapse",
    "g:e:Kupfer",
    "g:e:Conky",
    "n:w:*dockbarx*",
   #"n:w:*Firefox*",
   #"n:w:*Chrome*",
   #"n:w:*Chromium*",
    "class_g ?= 'Notify-osd'",
    "class_g ?= 'Cairo-dock'",
    "class_g ?= 'Xfce4-notifyd'",
    "class_g ?= 'Xfce4-power-manager'"
];


#--------------------------------
#--------Fading Settings:--------
#--------------------------------
fading = true;                   # Enable fading windows during opacity changes
fade-delta = 4;                  # The time between steps in a fade in milliseconds
fade-in-step = 0.03;             # The opacity change between steps while fading in
fade-out-step = 0.03;            # The opacity change between steps while fading out
detect-client-opacity = true;    # Prevent opacity from being ignored for some applications


#--------------------------------
#--------Window Settings:--------
#--------------------------------
wintypes:                        # Change behavior for these specific types of windows:
{
    tooltip = { fade = true; shadow = false; };
};

detect-rounded-corners = true;

ただし、この問題が存在する別の構成も以前にありました。

私のハードウェアは次のとおりです。

     MB  Gigabyte GA-H97 HD3 
     CPU Intel Xeon E3-1231 (No AGP) 
     RAM 32GB DDR3
     GPU Nvidia Quadro 5000 
     2560x1080 Display, 60 Hz, connected via DisplayPort
1
Prototype700

プライバシーバジャーの影について話している場合は、次の行をshadow-excludeリスト:

"class_g = 'Firefox' && argb"

そのようなウィンドウから影を削除しますが、メニュー(無効になっていない場合)およびメインウィンドウに残します。ソースは herehere です。問題についての説明があります。

3
Gleb