diff options
author | Raúl Benencia <rul@kalgan.cc> | 2019-08-04 10:20:22 -0700 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2019-08-04 10:20:22 -0700 |
commit | 826c03929d034f9fbbc8e580a94eb4399930af22 (patch) | |
tree | 69caab97b909301db6d8424f8135b35a8305a249 | |
parent | 1b77dc4e5c06af101c563ae6f4f51efea8f726f5 (diff) |
fix transparency quirks
-rw-r--r-- | .config/compton.conf | 12 | ||||
-rw-r--r-- | .emacs.local.d/modes/themes.el | 4 |
2 files changed, 3 insertions, 13 deletions
diff --git a/.config/compton.conf b/.config/compton.conf index fceb4a2..9fcee62 100644 --- a/.config/compton.conf +++ b/.config/compton.conf @@ -1,16 +1,6 @@ -# Shadow -shadow = false; -no-dnd-shadow = true; -no-dock-shadow = true; -clear-shadow = true; -shadow-radius = 12.0; -shadow-offset-x = -12; -shadow-offset-y = -12; -shadow-opacity = 0.95; - # Opacity menu-opacity = 1.0; -inactive-opacity = 1.0; +inactive-opacity = 0.0; active-opacity = 1.0; # Fading diff --git a/.emacs.local.d/modes/themes.el b/.emacs.local.d/modes/themes.el index 40ff87f..f09d23d 100644 --- a/.emacs.local.d/modes/themes.el +++ b/.emacs.local.d/modes/themes.el @@ -2,6 +2,6 @@ ;; Elpa packages: atom-one-dark (load-theme 'clues t) -(set-frame-parameter (selected-frame) 'alpha '(92 . 50)) -(add-to-list 'default-frame-alist '(alpha . (92 . 50))) +(set-frame-parameter (selected-frame) 'alpha '(92 . 92)) +(add-to-list 'default-frame-alist '(alpha . (92 . 92))) |