1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-16 04:47:18 +00:00
Dotfiles/.config/picom/picom.conf

415 lines
2.6 KiB
Plaintext
Raw Normal View History

2020-07-27 04:59:00 +00:00
2020-10-07 11:34:14 +00:00
corner-radius = 10;
rounded-corners-exclude = [
# "class_g = 'awesome'",
# "class_g = 'Polybar'",
"class_g *= 'dwm'",
];
rounded-corners-rule = [
"5:class_g = 'Dunst'",
];
round-borders = 10;
round-borders-exclude = [];
round-borders-rule = [
"3:class_g = 'XTerm'",
"3:class_g = 'URxvt'",
"10:class_g = 'Alacritty'",
"5:class_g = 'Dunst'",
"15:class_g = 'Signal'"
];
shadow = true;
shadow-radius = 20;
shadow-opacity = 0.75
shadow-offset-x = -10;
shadow-offset-y = -10;
2020-07-27 04:59:00 +00:00
shadow-exclude = [
2020-10-07 11:34:14 +00:00
"name = 'Polybar'",
"class_g *= 'border'",
2020-07-27 04:59:00 +00:00
"name = 'xmobar'",
"class_g = 'Conky'",
2020-10-07 11:34:14 +00:00
"class_g *= 'dwm'",
2020-09-25 16:51:12 +00:00
"class_g = 'Polybar'",
2020-07-27 04:59:00 +00:00
"class_g ?= 'Notify-osd'",
"class_g = 'Cairo-clock'",
"_GTK_FRAME_EXTENTS@:c"
];
2020-10-07 11:34:14 +00:00
fading = true
2020-07-27 04:59:00 +00:00
fade-in-step = 0.03;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
fade-out-step = 0.03;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
inactive-opacity = 1;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
frame-opacity = 1;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
inactive-opacity-override = false;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
inactive-dim = 0
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
focus-exclude = [ "class_g = 'Cairo-clock'" ];
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
opacity-rule = [
"95:class_g = 'Emacs'",
2020-10-07 11:34:14 +00:00
"95:class_g *= 'Alacritty'",
2020-09-25 16:51:12 +00:00
"78:class_g *= 'Zathura'",
"80:class_g = 'dropdown'",
"50:class_g = 'Firefox'",
2020-07-27 04:59:00 +00:00
"90:class_g *= 'emacs'",
2020-10-07 11:34:14 +00:00
"90:class_g = 'dmenu'",
2020-07-27 04:59:00 +00:00
"95:name *= 'alacritty'",
2020-10-07 11:34:14 +00:00
"90:name = 'emacs'",
2020-09-25 16:51:12 +00:00
"85:name *= 'xmobar'",
2020-10-07 11:34:14 +00:00
"95:class_g = 'Spotify'",
"95:class_g = 'Polybar'"
2020-07-27 04:59:00 +00:00
]
blur:
{
2020-10-07 11:34:14 +00:00
method = "kawase";
2020-07-27 04:59:00 +00:00
size = 10;
deviation = 2.0;
};
blur-kern = "3x3box";
blur-background-exclude = [
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
"window_type = 'desktop'",
"_GTK_FRAME_EXTENTS@:c"
];
backend = "glx";
2020-10-07 11:34:14 +00:00
vsync = true
2020-07-27 04:59:00 +00:00
mark-wmwin-focused = true;
mark-ovredir-focused = true;
2020-10-07 11:34:14 +00:00
detect-rounded-corners = true
2020-07-27 04:59:00 +00:00
detect-client-opacity = true;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
refresh-rate = 0
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
unredir-if-possible = false
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
detect-transient = true
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
detect-client-leader = true
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
use-damage = true
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
log-level = "warn";
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
wintypes:
{
tooltip = {
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
fade = false;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
shadow = true;
2020-10-07 11:34:14 +00:00
opacity = 1;
2020-07-27 04:59:00 +00:00
focus = true;
};
dock = {
full-shadow = true;
2020-10-07 11:34:14 +00:00
opacity = 1;
2020-07-27 04:59:00 +00:00
}
dnd = {
shadow = false;
}
popup_menu = {
full-shaodw = false;
2020-10-07 11:34:14 +00:00
opacity = 1;
2020-07-27 04:59:00 +00:00
}
dropdown_menu = {
full-shaodw = false;
2020-10-07 11:34:14 +00:00
opacity = 1;
2020-07-27 04:59:00 +00:00
}
notification = {
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
fade = true;
2020-10-07 11:34:14 +00:00
2020-07-27 04:59:00 +00:00
shadow = true;
2020-10-07 11:34:14 +00:00
opacity = 1;
2020-07-27 04:59:00 +00:00
focus = true;
};
};