commit 873dccab8a09d46e72e38601131cd0d6e5351241
parent 54c45d617c0dadb5962d2b2b564ae9ece7a74056
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Mon, 4 Mar 2019 15:20:43 +0100
Change options to fix deprecation warnings
Diffstat:
1 file changed, 20 insertions(+), 6 deletions(-)
diff --git a/links/.compton.conf b/links/.compton.conf
@@ -56,10 +56,6 @@ glx-swap-method = "undefined";
# Enabled client-side shadows on windows.
shadow = true;
-# Don't draw shadows on DND windows.
-no-dnd-shadow = true;
-# Avoid drawing shadows on dock/panel windows.
-no-dock-shadow = false;
# Zero the part of the shadow's mask behind the window. Fix some weirdness with ARGB windows.
#clear-shadow = true;
# The blur radius for shadows. (default 12)
@@ -93,12 +89,10 @@ shadow-ignore-shaped = false;
#
#################################
-menu-opacity = 1;
inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;
inactive-opacity-override = false;
-alpha-step = 0.06;
# Dim inactive windows. (0.0 - 1.0)
# inactive-dim = 0.2;
@@ -214,4 +208,24 @@ wintypes:
# focus: Whether to always consider windows of this type focused.
focus = true;
};
+
+ dock =
+ {
+ shadow = false;
+ };
+
+ dnd =
+ {
+ shadow = false;
+ };
+
+ popup_menu =
+ {
+ opacity = 1;
+ };
+
+ dropdown_menu =
+ {
+ opacity = 1;
+ };
};