summaryrefslogtreecommitdiff
path: root/picom/.config
diff options
context:
space:
mode:
authorShubham Saini <shubham6405@gmail.com>2020-04-20 06:34:27 +0000
committerShubham Saini <shubham6405@gmail.com>2020-04-20 06:34:27 +0000
commit04eaf5c25193ba74c1613c958015f47e2b896e50 (patch)
tree9f577ad83ff95dad560539725d5c39b504a06dc6 /picom/.config
parent8422687d96868ab8eb84bc60efb6b0647841dcdc (diff)
mass changes
Diffstat (limited to 'picom/.config')
-rw-r--r--picom/.config/picom.conf77
1 files changed, 77 insertions, 0 deletions
diff --git a/picom/.config/picom.conf b/picom/.config/picom.conf
new file mode 100644
index 0000000..68c6ee5
--- /dev/null
+++ b/picom/.config/picom.conf
@@ -0,0 +1,77 @@
1## SHADOWS
2shadow = true;
3shadow-radius = 0.5;
4shadow-offset-x = 3;
5shadow-offset-y = 3;
6shadow-opacity = 0.65;
7log-level = "warn";
8shadow-exclude = [
9 "name = 'Notification'",
10 "class_g = 'conky'",
11 "class_g ?= 'Notify-osd'",
12 "class_g = 'Cairo-clock'",
13 "class_g ?= 'slop'",
14 "name = 'polybar'",
15 "name = 'Polybar tray window'",
16 "class_g ?= 'dmenu'",
17 "class_g ?= 'dwm'",
18 "class_g = 'Firefox' && argb",
19 "_GTK_FRAME_EXTENTS@:c"
20];
21
22## OPACITY
23frame-opacity = 1.0;
24inactive-opacity-override = false;
25blur-background = true;
26blur-strength = 3;
27blur-kern = "3x3box";
28blur-background-exclude = [
29 "class_g ?= 'slop'",
30 "name = 'polybar'",
31 "name = 'Polybar tray window'",
32 "class_g = 'conky'",
33 "class_g ?= 'Rofi'",
34 "class_g ?= 'zoom'",
35 "window_type = 'dock'",
36 "window_type = 'desktop'"
37];
38opacity-rule = [
39 "40:class_g = 'Bspwm' && class_i = 'presel_feedback'",
40 "100:class_g = 'URxvt' && focused",
41 "95:class_g = 'URxvt' && !focused"
42];
43
44## FADING
45fading = true;
46fade-in-step = 0.03;
47fade-out-step = 0.03;
48fade-exclude = [ ];
49
50## GLX
51glx-no-stencil = true;
52glx-no-rebind-pixmap = true;
53use-damage = true;
54
55## WINDOW TYPES
56wintypes:
57{
58 tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
59 dock = { shadow = false; }
60 dnd = { shadow = false; }
61 popup_menu = { opacity = 0.8; }
62 dropdown_menu = { opacity = 0.8; }
63};
64
65## MISC
66backend = "glx";
67mark-wmwin-focused = true;
68mark-ovredir-focused = true;
69use-ewmh-active-win = true;
70detect-rounded-corners = true;
71detect-client-opacity = true;
72refresh-rate = 0;
73vsync = true;
74focus-exclude = [ "class_g = 'Cairo-clock'" ];
75detect-transient = true;
76detect-client-leader = true;
77invert-color-include = [ ];