dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.config/compton.conf

105 lines
3.0 KiB
Plaintext
Raw Normal View History

2018-02-17 19:16:52 +00:00
backend = "glx";
paint-on-overlay = true;
vsync = "opengl-swc";
refresh-rate = 0;
glx-copy-from-front = false;
sw-opti = true;
glx-use-copysubbuffermesa = true;
glx-swap-method = "buffer-age";
2017-02-20 23:39:22 +00:00
2017-09-20 18:10:15 +00:00
shadow = true;
2018-02-14 22:03:56 +00:00
shadow-radius = 8;
shadow-offset-x = -0.3;
shadow-offset-y = -0.3;
shadow-opacity = 0.6;
2017-09-20 18:10:15 +00:00
no-dock-shadow = true;
no-dnd-shadow = true;
2018-02-14 22:03:56 +00:00
clear-shadow = true;
2017-02-20 23:39:22 +00:00
2017-09-20 18:10:15 +00:00
menu-opacity = 1.0;
frame-opacity = 0.8;
active-opacity = 1.0;
inactive-opacity = 0.85;
inactive-dim = 0.2;
2017-02-20 23:39:22 +00:00
2017-09-20 18:10:15 +00:00
detect-rounded-corners = true;
detect-client-opacity = true;
2018-02-14 22:03:56 +00:00
shadow-ignore-shaped = true;
2017-09-20 18:10:15 +00:00
inactive-opacity-override = false;
mark-wmwin-focused = true;
2018-02-12 06:07:29 +00:00
use-ewmh-active-win = false;
2017-09-20 18:10:15 +00:00
detect-transient = true;
detect-client-leader = true;
2017-02-20 23:39:22 +00:00
2017-09-20 18:10:15 +00:00
fading = true;
fade-delta = 15;
2018-02-17 19:16:52 +00:00
fade-in-step = 0.06;
fade-out-step = 0.06;
2017-09-20 18:10:15 +00:00
blur-background = true;
blur-background-frame = true;
blur-background-fixed = false;
blur-kern = "3x3box";
2017-02-20 23:39:22 +00:00
2017-09-11 03:37:55 +00:00
opacity-rule = [
2018-02-14 22:03:56 +00:00
"40:class_g = 'Bspwm' && class_i = 'presel_feedback'",
2017-09-20 18:10:15 +00:00
"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
];
2017-02-20 23:39:22 +00:00
shadow-exclude = [
2018-02-14 22:03:56 +00:00
"name *?= 'Notification'",
"class_g ?= 'Notify-osd'",
"class_g = 'Bspwm'",
"class_g = 'Rofi'",
"class_g = 'VirtualBox' && name = 'VirtualBox' && bounding_shaped && (_NET_WM_STATE@[0]:a = '_NET_WM_STATE_MAXIMIZED_VERT' && _NET_WM_STATE@[1]:a = '_NET_WM_STATE_MAXIMIZED_HORZ' || _NET_WM_STATE@[0]:a = '_NET_WM_STATE_MAXIMIZED_HORZ' && _NET_WM_STATE@[1]:a = '_NET_WM_STATE_MAXIMIZED_VERT') && _NET_WM_WINDOW_TYPE@[0]:a = '_KDE_NET_WM_WINDOW_TYPE_OVERRIDE'",
"class_g = 'bounding_shaped && !rounded_corners'",
"_GTK_FRAME_EXTENTS@:c",
#"n:e:Notification",
"n:w:Firefox",
"! name~=''",
"class_g ?= 'Xfce4-power-manager'",
"class_g = 'slop'",
"class_g = 'maim'"
2017-02-20 23:39:22 +00:00
];
opacity-exclude = [
2018-02-14 22:03:56 +00:00
"class_g = 'mpv'",
"class_g = 'Firefox'",
"name *?= 'Notification'",
"class_g ?= 'Notify-osd'",
"_GTK_FRAME_EXTENTS@:c",
#"n:e:Notification",
"n:w:Firefox",
"! name~=''",
"class_g ?= 'Xfce4-power-manager'",
"class_g = 'slop'",
"class_g = 'maim'"
2017-09-11 03:37:55 +00:00
];
blur-background-exclude = [
2018-02-14 22:03:56 +00:00
"class_g = 'slop'",
"class_g = 'maim'",
"class_g = 'Rofi'",
# "class_g = 'Termite'",
2017-09-11 03:37:55 +00:00
"_GTK_FRAME_EXTENTS@:c"
2017-02-20 23:39:22 +00:00
];
2017-12-28 13:49:45 +00:00
blur-background-frame-exclude = [
2018-02-14 22:03:56 +00:00
# "class_g = 'Termite'",
2017-12-28 13:49:45 +00:00
];
focus-exclude = [
"_NET_WM_NAME@:s = 'rofi'",
"class_g = 'Rofi'"
];
2017-02-20 23:39:22 +00:00
#Window type settings
wintypes:
{
2018-02-14 22:03:56 +00:00
tooltip = { fade = true; shadow = false; opacity = 1; focus = true; };
menu = { shadow = false; opacity = 1; focus = true; };
dropdown_menu = { shadow = false; opacity = 1; focus = true; };
popup_menu = { shadow = false; opacity = 1; focus = true; };
utility = { shadow = false; opacity = 1; focus = true; };
2017-09-11 03:37:55 +00:00
};