aboutsummaryrefslogtreecommitdiffstats
path: root/compton/.config
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-04-26 16:12:05 -0700
committerGravatar Tom Willemse2020-04-26 16:12:05 -0700
commite67f221c21c6719c8d17d74ee58e0ddc38689532 (patch)
tree78862f56234f731bcd4def8072d78fb78a321f00 /compton/.config
parent6c65158e684f7aa9df33ecb105ae6c52174acd2d (diff)
downloadnew-dotfiles-e67f221c21c6719c8d17d74ee58e0ddc38689532.tar.gz
new-dotfiles-e67f221c21c6719c8d17d74ee58e0ddc38689532.zip
Rename Compton to Picom
They renamed the project and it’s been warning me about this for a while.
Diffstat (limited to 'compton/.config')
-rw-r--r--compton/.config/.gitignore1
-rw-r--r--compton/.config/compton.org48
2 files changed, 0 insertions, 49 deletions
diff --git a/compton/.config/.gitignore b/compton/.config/.gitignore
deleted file mode 100644
index 326879c..0000000
--- a/compton/.config/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-compton.conf
diff --git a/compton/.config/compton.org b/compton/.config/compton.org
deleted file mode 100644
index eb87dfb..0000000
--- a/compton/.config/compton.org
+++ /dev/null
@@ -1,48 +0,0 @@
-#+TITLE: Compton config
-
-Consider all windows grouped by =WM_TRANSIENT_FOR= to be focused when
-one window in the group has focus.
-
-#+BEGIN_SRC conf
- detect-transient = true;
-#+END_SRC
-
-* Shadows
-
- Turn on shadows.
-
- #+BEGIN_SRC conf
- shadow = true;
- #+END_SRC
-
- Don't draw shadows on drag-and-drop windows or dock windows.
-
- #+BEGIN_SRC conf
- wintypes:
- {
- dnd = { shadow = false },
- dock = { shadow = false }
- }
- #+END_SRC
-
- Make shadows bigger.
-
- #+BEGIN_SRC conf
- shadow-radius = 10;
- #+END_SRC
-
- Don't show shadows for these windows.
-
- - mowedline :: This is my statusbar application, I make it completely
- transparent and that makes a shadow look very out of place.
-
- - Shaped windows :: Things look weird when shaped windows get a
- rectangular shadow.
-
- #+BEGIN_SRC conf
- shadow-exclude = [
- "name = 'mowedline'",
- "class_g = 'trayer'",
- "bounding_shaped"
- ];
- #+END_SRC