1
1
mirror of https://github.com/nboughton/dotfiles synced 2024-11-22 14:51:56 +01:00
github.com-nboughton-dotfiles/picom/picom.conf

52 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-06-01 21:18:26 +02:00
shadow = true;
2021-01-18 15:17:28 +01:00
shadow-radius = 20;
2021-06-02 11:18:57 +02:00
shadow-offset-x = -20;
shadow-offset-y = -20;
2021-01-18 15:17:28 +01:00
shadow-exclude = [
"name = 'Notification'",
2021-07-09 10:56:09 +02:00
"name = 'polybar-bottom_eDP'",
2021-01-18 15:17:28 +01:00
"class_g ?= 'Notify-osd'",
2021-02-05 17:55:24 +01:00
"_GTK_FRAME_EXTENTS@:c",
"class_g = 'i3-frame'",
"class_g = 'zoom'"
2021-01-18 15:17:28 +01:00
];
2021-02-05 17:55:24 +01:00
fading = true;
2021-01-18 15:17:28 +01:00
fade-in-step = 0.03;
fade-out-step = 0.03;
inactive-opacity = 1.0;
frame-opacity = 1.0;
inactive-opacity-override = false;
focus-exclude = [ "class_g = 'Cairo-clock'" ];
blur-kern = "3x3box";
blur-background-exclude = [
"window_type = 'dock'",
"window_type = 'desktop'",
"_GTK_FRAME_EXTENTS@:c"
];
2021-06-02 11:18:57 +02:00
backend = "glx";
2021-02-05 17:55:24 +01:00
vsync = true;
2021-01-18 15:17:28 +01:00
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
2021-02-05 17:55:24 +01:00
refresh-rate = 0;
detect-transient = true;
detect-client-leader = true;
use-damage = true;
2021-01-18 15:17:28 +01:00
log-level = "warn";
2021-04-23 09:43:30 +02:00
corner-radius = 5;
2021-03-17 11:21:13 +01:00
2021-01-18 15:17:28 +01:00
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
2021-06-02 11:18:57 +02:00
dock = { shadow = true; }
dnd = { shadow = true; }
2021-02-05 17:55:24 +01:00
popup_menu = { opacity = 0.9; }
dropdown_menu = { opacity = 0.9; }
2021-01-18 15:17:28 +01:00
};