From 3e418b263e7eeeb5b8eaee552d0975b78009e8b6 Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Sat, 31 Oct 2020 22:33:52 +0100 Subject: [PATCH] compositor: Switch from compton to picom Switch to ibhagwan's picom fork with dual_kawase blur and rounded corners. --- .config/compositor | 2 +- .config/compton/compton.conf | 4 ---- .config/{compton => picom}/launch.sh | 0 .config/picom/picom.conf | 11 +++++++++++ 4 files changed, 12 insertions(+), 5 deletions(-) delete mode 100644 .config/compton/compton.conf rename .config/{compton => picom}/launch.sh (100%) create mode 100644 .config/picom/picom.conf diff --git a/.config/compositor b/.config/compositor index 0cf094a..408be51 120000 --- a/.config/compositor +++ b/.config/compositor @@ -1 +1 @@ -./compton \ No newline at end of file +picom \ No newline at end of file diff --git a/.config/compton/compton.conf b/.config/compton/compton.conf deleted file mode 100644 index 11ea9fd..0000000 --- a/.config/compton/compton.conf +++ /dev/null @@ -1,4 +0,0 @@ -backend = "glx"; -blur-method = "kawase"; -blur-strength = 10; -blur-background = true; diff --git a/.config/compton/launch.sh b/.config/picom/launch.sh similarity index 100% rename from .config/compton/launch.sh rename to .config/picom/launch.sh diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf new file mode 100644 index 0000000..42b05da --- /dev/null +++ b/.config/picom/picom.conf @@ -0,0 +1,11 @@ +experimental-backends = true; +backend = "glx"; + +corner-radius = 20; + +blur: +{ + method = "kawase"; + strength = 10; + background = true; +}