summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas <nbnoll@eml.cc>2021-10-17 10:01:55 -0700
committerNicholas <nbnoll@eml.cc>2021-10-17 10:01:55 -0700
commit2f9dc9b7207abe023efb78ccfb1a8b1f377d633c (patch)
treeb50fbec569c1b939ea85712b8105ee220aec120d
parent4162584ad496a6c4c5a9bcf8f33599179819e5c9 (diff)
chore: rm picom
-rw-r--r--.config/picom/config82
1 files changed, 0 insertions, 82 deletions
diff --git a/.config/picom/config b/.config/picom/config
deleted file mode 100644
index ef27cce..0000000
--- a/.config/picom/config
+++ /dev/null
@@ -1,82 +0,0 @@
-# ------------------------------------------------------------------------
-# global settings
-
-backend = "glx";
-
-refresh-rate = 0;
-vsync = false;
-xrender-sync-fence = true;
-mark-ovredir-focused = false;
-
-# ------------------------------------------------------------------------
-# fading
-
-fading = true;
-fade-delta = 5;
-fade-in-step = 0.05;
-fade-out-step = 0.05;
-
-# ------------------------------------------------------------------------
-# shadow
-
-shadow = true;
-shadow-radius = 5;
-shadow-offset-x = -5;
-shadow-offset-y = -5;
-shadow-opacity = 0.5;
-shadow-exclude = [
- "class_g = 'dwm'",
-]
-
-# ------------------------------------------------------------------------
-# special classes
-
-round-borders = 1;
-round-borders-exclude = [
- "class_i = 'dwm'",
-];
-corner-radius = 6;
-rounded-corners-exclude = [
- "class_i = 'dwm'",
-]
-
-wintypes:
-{
- tooltip = { shadow = false; opacity = 1.0; focus = true; blur = false; };
- dropdown_menu = { shadow = false; opacity = 1.0; focus = true; blur = false; };
- popup_menu = { shadow = false; opacity = 1.0; focus = true; blur = false; };
- utility = { shadow = false; opacity = 1.0; focus = true; blur = false; };
-};
-
-# ------------------------------------------------------------------------
-# opacity
-
-inactive-opacity = 0.90;
-active-opacity = 0.98;
-frame-opacity = 1.00;
-detect-client-opacity = false;
-inactive-opacity-override = true;
-
-opacity-rule = [
- "99:class_g = 'Chromium'",
- "99:class_g = 'Inkscape'",
- "99:class_g = 'Gimp'",
- "99:class_g = 'zoom'",
-];
-
-focus-exclude = [
- "class_i = 'dwm'"
-];
-
-# ------------------------------------------------------------------------
-# blur
-
-blur:
-{
- method = "dual_kawase";
- size = 4;
- deviation = 5.0;
- background = true;
- frame = true;
- fixed = true;
-};