From 86fb826da42dbbcc7dbbf48a985b75b4d8b91416 Mon Sep 17 00:00:00 2001 From: Rohit Singh Bisht <72189840+proro485@users.noreply.github.com> Date: Thu, 1 Oct 2020 13:23:40 +0530 Subject: [PATCH 1/2] Update picom.sample.conf --- picom.sample.conf | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/picom.sample.conf b/picom.sample.conf index 89f8d69..9cf6900 100644 --- a/picom.sample.conf +++ b/picom.sample.conf @@ -15,7 +15,7 @@ size-transition = true # Corners # ################################# # requires: https://github.com/sdhand/compton or https://github.com/jonaburg/picom -corner-radius = 25.0; +corner-radius = 10.0; rounded-corners-exclude = [ #"window_type = 'normal'", "class_g = 'awesome'", @@ -166,7 +166,11 @@ inactive-opacity = 0.8; frame-opacity = 0.7; # Default opacity for dropdown menus and popup menus. (0.0 - 1.0, defaults to 1.0) -# menu-opacity = 1.0 +# menu-opacity = 1.0 +# menu-opacity is depreciated use dropdown-menu and popup-menu instead +#popup_menu = { opacity = 0.x; } +#dropdown_menu = { opacity = 0.x; } + # Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows. # inactive-opacity-override = true @@ -404,7 +408,9 @@ detect-client-leader = true # The opposing option is use-damage # # no-use-damage = false -use-damage = true +#use-damage = true (Causing Weird Black semi opaque rectangles when terminal is opened) +#Changing use-damage to false fixes the problem +use-damage = false # Use X Sync fence to sync clients' draw calls, to make sure all draw # calls are finished before picom starts drawing. Needed on nvidia-drivers From d08c9b8c493d24c9df77f46147f4839849873a83 Mon Sep 17 00:00:00 2001 From: Rohit Singh Bisht <72189840+proro485@users.noreply.github.com> Date: Thu, 1 Oct 2020 13:27:28 +0530 Subject: [PATCH 2/2] Update picom.sample.conf --- picom.sample.conf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/picom.sample.conf b/picom.sample.conf index 9cf6900..ee3fbbe 100644 --- a/picom.sample.conf +++ b/picom.sample.conf @@ -167,9 +167,11 @@ frame-opacity = 0.7; # Default opacity for dropdown menus and popup menus. (0.0 - 1.0, defaults to 1.0) # menu-opacity = 1.0 -# menu-opacity is depreciated use dropdown-menu and popup-menu instead -#popup_menu = { opacity = 0.x; } -#dropdown_menu = { opacity = 0.x; } +# menu-opacity is depreciated use dropdown-menu and popup-menu instead. + +#If using these 2 below change their values in line 510 & 511 aswell +popup_menu = { opacity = 0.8; } +dropdown_menu = { opacity = 0.8; } # Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows.