From 2351fe909cd17a9693ed96bb314b52bd82ad7bb5 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 20 Dec 2021 10:43:06 +0100 Subject: [PATCH] xss-dimmer: use none as a default easing function Now that picom does not change opacity of the window, this is just fine. --- bin/xss-dimmer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/xss-dimmer b/bin/xss-dimmer index d4cd681..c105514 100755 --- a/bin/xss-dimmer +++ b/bin/xss-dimmer @@ -140,7 +140,7 @@ if __name__ == "__main__": add("--background", help="use a background instead of black") add( "--easing-function", - default="out-circ", + default="none", choices=easing_functions.keys(), help="easing function for opacity", )