Tinkering with picom and rofi transparency.

This commit is contained in:
Joachim 2020-07-19 18:04:23 +02:00
parent d1e7858a2f
commit 5dd35cda06
2 changed files with 44 additions and 39 deletions

View File

@ -125,6 +125,8 @@ blur-background-exclude = [
"window_type = 'dock'", "window_type = 'dock'",
"window_type = 'desktop'" "window_type = 'desktop'"
]; ];
blur-size = 10;
blur-method = "gaussian"
# this supposedly fixes blur artifacts in terminal (saw some black lines) # this supposedly fixes blur artifacts in terminal (saw some black lines)
use-damage = false use-damage = false

View File

@ -19,6 +19,7 @@
/* Gruvbox dark colors */ /* Gruvbox dark colors */
dark0-hard: #1d2021; dark0-hard: #1d2021;
dark0: #282828; dark0: #282828;
dark0-transparent: #28282888;
dark0-soft: #32302f; dark0-soft: #32302f;
dark1: #3c3836; dark1: #3c3836;
dark2: #504945; dark2: #504945;
@ -61,7 +62,8 @@
faded-orange: #af3a03; faded-orange: #af3a03;
/* Theme colors */ /* Theme colors */
background: @dark0; /* background: @dark0; */
background: @dark0-transparent;
background-color: @background; background-color: @background;
foreground: @light0-hard; foreground: @light0-hard;
border-color: @gray-245; border-color: @gray-245;
@ -70,7 +72,7 @@
normal-background: @background; normal-background: @background;
normal-foreground: @foreground; normal-foreground: @foreground;
alternate-normal-background: @dark0; alternate-normal-background: @dark0-transparent;
alternate-normal-foreground: @foreground; alternate-normal-foreground: @foreground;
selected-normal-background: @dark4; selected-normal-background: @dark4;
selected-normal-foreground: @bright-green; selected-normal-foreground: @bright-green;
@ -95,6 +97,7 @@ window {
border: 2; border: 2;
border-radius: 10; border-radius: 10;
padding: 20; padding: 20;
} }
mainbox { mainbox {