AwesomeFiles/config/awesome/theme/picom.conf

108 lines
2.3 KiB
Plaintext
Raw Normal View History

2022-03-30 23:32:27 -05:00
#========================= Corners =========================#
corner-radius = 12;
rounded-corners-exclude = [
# "!window_type = 'normal'",
# "class_g ?= 'rofi'",
];
round-borders = 1;
round-borders-exclude = [
#"class_g = 'TelegramDesktop'",
];
2022-03-27 02:40:48 -05:00
#========================= Shadows =========================#
2022-04-08 18:24:18 -05:00
shadow = false;
2022-03-26 08:33:46 -05:00
shadow-radius = 14;
shadow-opacity = 0.50;
shadow-offset-x = -14;
shadow-offset-y = -14;
2022-02-21 05:10:32 -06:00
shadow-exclude = [
"class_g = 'slop'",
2022-03-26 08:33:46 -05:00
"window_type = 'menu'",
"window_type = 'desktop'",
2022-03-29 09:25:50 -05:00
"class_g = 'Firefox' && window_type *= 'utility'",
2022-03-27 02:40:48 -05:00
"_GTK_FRAME_EXTENTS@:c"
2022-02-21 05:10:32 -06:00
];
2022-03-27 02:40:48 -05:00
#========================= Fading =========================#
2022-02-21 05:10:32 -06:00
fading = true;
fade-in-step = 0.03;
fade-out-step = 0.03;
2022-03-27 02:40:48 -05:00
fade-delta = 5;
2022-02-21 05:10:32 -06:00
2022-03-26 08:33:46 -05:00
no-fading-openclose = false
no-fading-destroyed-argb = true
2022-02-21 05:10:32 -06:00
2022-03-26 08:33:46 -05:00
fade-exclude = [
2022-03-27 09:05:09 -05:00
"class_g = 'slop'" # maim
]
2022-02-21 05:10:32 -06:00
2022-03-30 23:32:27 -05:00
#========================= Opacity =========================#
2022-04-08 18:24:18 -05:00
# inactive-opacity = 1;
2022-03-30 23:32:27 -05:00
frame-opacity = 1;
inactive-opacity-override = false;
2022-04-08 18:24:18 -05:00
# active-opacity = 1.0;
# inactive-dim = 0.0;
2022-03-27 09:05:09 -05:00
2022-03-30 23:32:27 -05:00
focus-exclude = [
"class_g = 'Cairo-clock'",
"class_g ?= 'rofi'",
"class_g ?= 'slop'"
2022-03-27 02:40:48 -05:00
];
2022-02-21 05:10:32 -06:00
2022-03-27 02:40:48 -05:00
opacity-rule = [
2022-03-29 09:25:50 -05:00
"85:class_g = 'splash'"
2022-03-27 02:40:48 -05:00
];
#========================= Blurring =========================#
2022-03-30 23:32:27 -05:00
blur: {
method = "dual_kawase";
2022-04-08 18:24:18 -05:00
strength = 5.0;
2022-03-30 23:32:27 -05:00
deviation = 1.0;
kernel = "11x11gaussian";
}
2022-04-08 18:24:18 -05:00
blur-background = true;
2022-03-29 09:25:50 -05:00
blur-background-frame = true;
blur-background-fixed = true;
2022-02-21 05:10:32 -06:00
2022-03-27 02:40:48 -05:00
blur-background-exclude = [
2022-03-30 23:32:27 -05:00
"class_g = 'slop'",
"class_g = 'Firefox' && argb",
"_GTK_FRAME_EXTENTS@:c"
2022-03-27 02:40:48 -05:00
];
2022-02-21 05:10:32 -06:00
2022-03-27 02:40:48 -05:00
#========================= General Settings =========================#
2022-02-21 05:10:32 -06:00
backend = "glx";
vsync = true;
2022-03-26 08:33:46 -05:00
daemon = false;
dbus = false;
mark-wmwin-focused = true;
mark-ovredir-focused = true;
2022-02-21 05:10:32 -06:00
detect-rounded-corners = true;
detect-client-opacity = true;
2022-03-30 23:32:27 -05:00
detect-client-leader = true;
2022-02-21 05:10:32 -06:00
detect-transient = true;
glx-no-stencil = true;
use-damage = true;
2022-03-26 08:33:46 -05:00
resize-damage = 1;
transparent-clipping = false;
2022-02-21 05:10:32 -06:00
wintypes:
{
2022-03-27 09:05:09 -05:00
tooltip = { fade = true; shadow = false; focus = true; };
menu = { full-shadow = true;};
popup_menu = { full-shadow = true;};
utility = {full-shadow = true;};
toolbar = {full-shadow = true;};
normal = {full-shadow = true;};
notification = {full-shadow = true;};
dialog = {full-shadow = true};
dock = {full-shadow = true;};
dropdown_menu = { full-shadow = true;};
2022-02-21 05:10:32 -06:00
};
2022-04-08 18:24:18 -05:00