Updated config

This commit is contained in:
Eduard Urbach 2024-03-03 19:59:08 +01:00
parent acfceb3c65
commit 29a8811800
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
2 changed files with 17 additions and 5 deletions

View File

@ -7,7 +7,8 @@
"interval": 60, "interval": 60,
"format": "{:%H : %M}", "format": "{:%H : %M}",
"tooltip-format": "{:%A, %Y-%m-%d}", "tooltip-format": "{:%A, %Y-%m-%d}",
"on-click": "date -u +'%Y-%m-%dT%H:%M:%SZ' | wl-copy" "on-click": "gnome-clocks",
"on-click-right": "date -u +'%Y-%m-%dT%H:%M:%SZ' | wl-copy",
}, },
"cpu": { "cpu": {
"interval": 2, "interval": 2,
@ -74,9 +75,10 @@
"*": 9 "*": 9
}, },
"format-icons": { "format-icons": {
"urgent": "", "default": "",
"empty": "",
"active": "", "active": "",
"default": "" "urgent": "",
}, },
"sort-by-number": true, "sort-by-number": true,
}, },

View File

@ -30,14 +30,24 @@ window#waybar.hidden {
transition: none; transition: none;
} }
#workspaces {}
#workspaces button { #workspaces button {
padding: 0px 5px; padding: 0px 5px;
color: rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.4);
background: transparent; background: transparent;
text-shadow: none; text-shadow: none;
border-radius: 0;
} }
#workspaces button:hover, #workspaces button.empty {
color: rgba(255, 255, 255, 0.2);
}
#workspaces button.visible {}
#workspaces button.urgent {}
#workspaces button.persistent {}
#workspaces button.hidden {}
#workspaces button.active { #workspaces button.active {
color: rgba(255, 255, 255, 1.0); color: rgba(255, 255, 255, 1.0);
} }