diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-07-07 00:47:32 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-07-07 00:47:32 +0200 |
commit | 9ae634f16ec1f311c786ba50f44f650039b1ff69 (patch) | |
tree | 5ca23c2e18d451bac72baeb18f98aaae7da77aab | |
parent | 7bcb5233360d6aa0ad8908a817ce9b5d4c4e42b8 (diff) | |
download | dotfiles-9ae634f16ec1f311c786ba50f44f650039b1ff69.tar.gz |
compton to picom
-rwxr-xr-x | install.sh | 2 | ||||
-rw-r--r-- | picom/picom.conf (renamed from .compton.conf) | 8 | ||||
-rwxr-xr-x | xinitrc.d/99-wm.sh | 2 |
3 files changed, 7 insertions, 5 deletions
@@ -9,10 +9,10 @@ CONFIGS=( ["sway"]=".config" ["nvim"]=".config" ["termite"]=".config" ["twmn"]=".config" + ["picom"]=".config" [".i3"]="." [".vim"]="." [".xinitrc"]="." - [".compton.conf"]="." [".bashrc"]="." [".Xresources"]="." [".radare2rc"]="." diff --git a/.compton.conf b/picom/picom.conf index fda95d2..5c0b55b 100644 --- a/.compton.conf +++ b/picom/picom.conf @@ -125,9 +125,11 @@ blur-background-exclude = [ "window_type = 'desktop'"
];
-blur-kern = "7x7box";
-blur-method = "kawase";
-blur-strength = 10;
+blur-method = "gaussian";
+#blur-kern = "7x7box";
+blur-size = 30;
+blur-deviation = 15;
+#blur-strength = 15;
#corner-radius = 10;
diff --git a/xinitrc.d/99-wm.sh b/xinitrc.d/99-wm.sh index 52e7d97..6edb7d1 100755 --- a/xinitrc.d/99-wm.sh +++ b/xinitrc.d/99-wm.sh @@ -1,6 +1,6 @@ #!/bin/sh -compton & +picom --experimental-backends & twmnd & keepassxc & |