diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2024-06-24 03:13:24 +0300 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2024-06-24 03:13:24 +0300 |
| commit | 08314dae894927a9fb33448c63ada25e41923578 (patch) | |
| tree | 92619f3cb3cc456f0499250bafa2372c2720bb80 /awesome | |
| parent | 8b8d2e6bf37691a5004104f20024fee8c5cb9ec2 (diff) | |
| download | dotfiles-08314dae894927a9fb33448c63ada25e41923578.tar.xz dotfiles-08314dae894927a9fb33448c63ada25e41923578.zip | |
Added rules in picom to disable blurring on context menus
Diffstat (limited to 'awesome')
| -rw-r--r-- | awesome/.config/awesome/picom.conf | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/awesome/.config/awesome/picom.conf b/awesome/.config/awesome/picom.conf index 18ae177..db2fc06 100644 --- a/awesome/.config/awesome/picom.conf +++ b/awesome/.config/awesome/picom.conf @@ -7,8 +7,8 @@ # (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow,
# unless explicitly requested using the wintypes option.
#
-# shadow = false
-shadow = true;
+shadow = false;
+# shadow = true;
# The blur radius for shadows, in pixels. (defaults to 12)
# shadow-radius = 12
@@ -60,6 +60,7 @@ shadow-offset-y = -7; # examples:
# shadow-exclude = "n:e:Notification";
#
+#
# shadow-exclude = []
shadow-exclude = [
"name = 'Notification'",
@@ -72,6 +73,9 @@ shadow-exclude = [ "name *= 'compton'",
"name *= 'Chromium'",
"name *= 'Chrome'",
+ "name *= 'Brave-browser'",
+ "class_g = 'Brave-browser'",
+ "class_g = 'firefox'",
"class_g = 'Firefox' && argb",
"class_g = 'Conky'",
"class_g = 'Kupfer'",
@@ -99,6 +103,9 @@ shadow-exclude = [ # Crop shadow of a window fully on a particular Xinerama screen to the screen.
# xinerama-shadow-crop = false
+wintypes: {
+ menu = { shadow = false; blur-background = false; }
+}
#################################
@@ -194,7 +201,10 @@ blur-background-exclude = [ # "window_type = 'tooltip'";
# "window_type = 'dock'",
# "window_type = 'desktop'",
- "_GTK_FRAME_EXTENTS@:c"
+ #
+ # "_GTK_FRAME_EXTENTS@:c"
+ "class_g = 'Brave-browser'",
+ "class_g = 'firefox'",
];
|
