aboutsummaryrefslogtreecommitdiff
path: root/compton/.config/compton.conf
diff options
context:
space:
mode:
authorkd <kdam0@localhost.localdomain>2020-05-24 20:27:26 +0000
committerkd <kdam0@localhost.localdomain>2020-05-24 20:27:26 +0000
commit9cb235ea04cd2365a4de0620b2c865922dc57050 (patch)
tree353379304e32f4fc5686a84aec4fb6d724457e6f /compton/.config/compton.conf
parent438240ed9e5e475c57c70014c8184feabd1e1690 (diff)
added fedora configs
Diffstat (limited to 'compton/.config/compton.conf')
-rw-r--r--compton/.config/compton.conf108
1 files changed, 23 insertions, 85 deletions
diff --git a/compton/.config/compton.conf b/compton/.config/compton.conf
index 0c93613..5799d40 100644
--- a/compton/.config/compton.conf
+++ b/compton/.config/compton.conf
@@ -1,92 +1,30 @@
-# Shadow
-shadow = false;
-no-dnd-shadow = true;
-no-dock-shadow = true;
-clear-shadow = false;
-shadow-radius = 10;
-shadow-offset-x = -7;
-shadow-offset-y = -7;
-#shadow-opacity = 0.7;
-# shadow-red = 0.0;
-# shadow-green = 0.0;
-# shadow-blue = 0.0;
-shadow-exclude = [
- "!focused",
- "name = 'Notification'",
- "class_g = 'Conky'",
- "class_g ?= 'Notify-osd'",
- "class_g = 'Cairo-clock'",
- "_GTK_FRAME_EXTENTS@:c"
-];
-# shadow-exclude = "n:e:Notification";
-# shadow-exclude-reg = "x10+0+0";
-# xinerama-shadow-crop = true;
+# New Start: A modern Arch workflow built with an emphasis on functionality.
+# Copyright (C) 2017-2018 Donovan Glover
-# Opacity
-menu-opacity = 1.0;
-inactive-opacity = 0.9;
-active-opacity = 1.0;
-frame-opacity = 1.0;
-inactive-opacity-override = false;
-alpha-step = 0.06;
-# inactive-dim = 0.2;
-# inactive-dim-fixed = true;
-# blur-background = true;
-# blur-background-frame = true;
-blur-kern = "3x3box";
-# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
-# blur-background-fixed = true;
-blur-background-exclude = [
- "window_type = 'dock'",
- "window_type = 'desktop'",
- "_GTK_FRAME_EXTENTS@:c"
-];
-opacity-rule = [ "30:class_g = 'polybar'" ];
+# Enable shadows (very important, as this makes everything look really nice)
+shadow = true
-# Fading
-fading = true;
-fade-delta = 4;
-fade-in-step = 0.03;
-fade-out-step = 0.03;
-#no-fading-openclose = true;
-# no-fading-destroyed-argb = true;
-fade-exclude = [ ];
+# Disable shadow on docks like polybar
+#no-dock-shadow = true
-# Other
-backend = "xrender";
-mark-wmwin-focused = true;
-mark-ovredir-focused = false;
-# use-ewmh-active-win = true;
-detect-rounded-corners = true;
-detect-client-opacity = true;
-refresh-rate = 0;
-vsync = "none";
-dbe = false;
-paint-on-overlay = true;
-# sw-opti = true;
-# unredir-if-possible = true;
-# unredir-if-possible-delay = 5000;
-# unredir-if-possible-exclude = [ ];
-focus-exclude = [ "class_g = 'Cairo-clock'" , "class_g = 'Firefox'", "class_g = 'Vivaldi-stable'", "class_g = 'mpv'", "class_g = 'zathura'", "_NET_WM_NAME@:s = 'rofi'"];
-detect-transient = true;
-detect-client-leader = true;
-invert-color-include = [ ];
-# resize-damage = 1;
+# Disable shadow for drag-and-drop functionality
+no-dnd-shadow = true
-# GLX backend
-# glx-no-stencil = true;
-glx-copy-from-front = false;
-# glx-use-copysubbuffermesa = true;
-# glx-no-rebind-pixmap = true;
-glx-swap-method = "undefined";
-# glx-use-gpushader4 = true;
-# xrender-sync = true;
-# xrender-sync-fence = true;
+# Fade windows when you open and close them, as well as change workspaces
+fading = false
-# Window type settings
-wintypes:
-{
- tooltip = { fade = true; shadow = false; opacity = 0.85; focus = true; };
-};
+# Shadow settings
+shadow-radius = 8
+shadow-opacity = 0.5
+shadow-offset-x = -10
+shadow-offset-y = -10
+# Fade settings
+fade-in-step = 0.04
+fade-out-step = 0.04
+fade-delta = 10
+# Add transparency to bspwm borders
+#frame-opacity = 0.5
+
+# vim:ft=dosini