diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-28 09:16:58 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-28 09:16:58 +0100 |
commit | 97b10cdc528d9f6954dc9ecf4511b089495d6b6f (patch) | |
tree | 23fefab99171e3f43798639dcef35cc9830333a2 /.config/picom.conf##template | |
parent | 871e5bbc95b34cac51820d2da363c98064d64288 (diff) |
no more picom config template
Diffstat (limited to '.config/picom.conf##template')
-rw-r--r-- | .config/picom.conf##template | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/.config/picom.conf##template b/.config/picom.conf##template deleted file mode 100644 index 0ff757f..0000000 --- a/.config/picom.conf##template +++ /dev/null @@ -1,104 +0,0 @@ -# do not touch, shit finally works w/ gpu -# backend = "xrender"; -backend = "glx"; -vsync = true; - -corner-radius = 10; - -shadow = true; -{% if yadm.hostname == "thoncc" %} -shadow-radius = 24; -shadow-opacity = 0.4; -shadow-offset-y = -24; -shadow-offset-x = -24; -{% else %} -shadow-radius = 48; -shadow-opacity = 0.4; -shadow-offset-y = -48; -shadow-offset-x = -48; -{% endif %} - -fade = false; -fade-in-step = 0.3; -fade-out-step = 0.18; -fade-delta = 16; - -rules = ( - { - match = "!I3_FLOATING_WINDOW@ = 1"; - shadow = false; - corner-radius = 0; - }, - { - match = "window_type *= 'desktop'"; - shadow = false; - }, - { - match = "window_type *= 'notification'"; - fade = true; - corner-radius = 12; - shadow = true; - }, - { - match = "_NET_WM_STATE@[*] = '_NET_WM_STATE_ABOVE'"; - shadow = true; - corner-radius = 10; - }, - { - match = "window_type *= 'menu' && override_redirect"; - corner-radius = 0; - full-shadow = true; - shadow = true; - }, - { - match = "window_type *= 'tooltip'"; - fade = true; - shadow = false; - corner-radius = 0; - }, - { - match = "window_type *= 'dock'"; - shadow = false; - corner-radius = 0; - }, - { - match = "window_type *= 'popup_menu'"; - shadow = true; - corner-radius = 10; - }, -) - -animations = ( - { - triggers = [ "geometry" ]; - offset-x = { - curve = "cubic-bezier(0.05, 0, 0, 1)"; - duration = 0.250; - start = "window-x-before - window-x"; - end = 0; - }; - offset-y = { - curve = "cubic-bezier(0.05, 0, 0, 1)"; - duration = 0.250; - start = "window-y-before - window-y"; - end = 0; - }; - shadow-offset-x = "offset-x"; - shadow-offset-y = "offset-y"; - saved-image-blend = 0; - }, - { - triggers = [ "open" ]; - preset = "appear"; - scale = 0.95; - duration = 0.075; - }, - { - triggers = [ "close" ]; - preset = "disappear"; - scale = 0.95; - duration = 0.075; - }, -); - -# vim: ft=conf |