diff options
author | David Runge <dave@sleepmap.de> | 2020-09-12 17:40:18 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2020-09-12 17:40:18 +0200 |
commit | 0e49d97ac87a3cbdce198ebf58e82d49acbd4241 (patch) | |
tree | 41edf52b2acdff7f2a5a3cf08beb20c950ad7e58 | |
parent | 5e82b6f3d0ec5038b7b36a88fa83fadeeb804a6b (diff) | |
download | dotfiles-0e49d97ac87a3cbdce198ebf58e82d49acbd4241.tar.gz dotfiles-0e49d97ac87a3cbdce198ebf58e82d49acbd4241.tar.bz2 dotfiles-0e49d97ac87a3cbdce198ebf58e82d49acbd4241.tar.xz dotfiles-0e49d97ac87a3cbdce198ebf58e82d49acbd4241.zip |
Add transparency to waybar's mpd widget
.config/waybar/style.css:
Set transparency to 33% for all states of the mpd widget
-rw-r--r-- | .config/waybar/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 63e6f57..4b4b504 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -185,19 +185,19 @@ label:focus { } #mpd { - background-color: rgba(102, 204, 153, 1); + background-color: rgba(102, 204, 153, 0.33); color: rgba(42, 92, 69, 1); } #mpd.disconnected { - background-color: rgba(245, 60, 60, 0.0); + background-color: rgba(245, 60, 60, 0.33); color: rgba(42, 92, 69, 1); } #mpd.stopped { - background-color: rgba(144, 177, 177, 1); + background-color: rgba(144, 177, 177, 0.33); } #mpd.paused { - background-color: rgba(81, 163, 122, 1); + background-color: rgba(81, 163, 122, 0.33); } |