summaryrefslogtreecommitdiff
path: root/etc/picom/picom.conf
diff options
context:
space:
mode:
authorWarrick Lo <warrick.s.z.lo@gmail.com>2021-12-11 23:33:16 -0800
committerWarrick Lo <warrick.s.z.lo@gmail.com>2021-12-11 23:33:16 -0800
commit487d64163c59fa3de79b5ff1abf303475395c4a2 (patch)
tree6339b3c8bbf7bdfe10e8c006c9cfbae9f66f527e /etc/picom/picom.conf
parent88de5bcf9b1598c5ada352d1f3b724423bf7e6ad (diff)
Restructure entire home directory
The new XDG base directories will resemble the Filesystem Hierarchy Standard on Linux or the FreeBSD/OpenBSD directory structure. Refer to the FHS or hier(7). XDG user directories are defined in $XDG_CONFIG_HOME/user-dirs.dirs.
Diffstat (limited to 'etc/picom/picom.conf')
-rw-r--r--etc/picom/picom.conf52
1 files changed, 52 insertions, 0 deletions
diff --git a/etc/picom/picom.conf b/etc/picom/picom.conf
new file mode 100644
index 0000000..326035d
--- /dev/null
+++ b/etc/picom/picom.conf
@@ -0,0 +1,52 @@
+# picom configuration
+
+# Blur
+
+blur-method = "dual_kawase";
+blur-strength = 5;
+
+blur-background-exclude = [
+ "class_g = 'Rofi'"
+];
+
+# Shadow
+
+shadow = true;
+shadow-radius = 20;
+shadow-offset-x = -20;
+shadow-offset-y = -20;
+shadow-opacity = 0.8;
+
+shadow-exclude = [
+ "class_g = 'Rofi'",
+]
+
+# Crop shadow of a window fully on a particular Xinerama screen to the screen.
+xinerama-shadow-crop = true;
+
+# General
+
+backend = "glx";
+
+wintypes: {
+ dock = {
+ full-shadow = true;
+ blur-background = false;
+ };
+ utility = {
+ shadow = false;
+ blur-background = false;
+ };
+ popup_menu = {
+ shadow = false;
+ };
+ tooltip = {
+ shadow = false;
+ opacity = 1.0;
+ blur-background = false;
+ };
+ dnd = {
+ shadow = false;
+ blur-background = false;
+ };
+};