diff options
author | Matt Singleton <matt@xcolour.net> | 2021-09-01 12:43:41 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2022-03-16 18:59:37 -0500 |
commit | a17ae708b7bf66bea0437417ef0ca0c2ad3be13c (patch) | |
tree | d09ee1642c923a9d9edef0a4edfaec3f10efa0f3 /config/waybar | |
parent | c12583494ee49a2ef1d2c485795f51712d66ce71 (diff) |
sway-related config changes
Diffstat (limited to 'config/waybar')
-rw-r--r-- | config/waybar/config | 9 | ||||
-rw-r--r-- | config/waybar/style.css | 13 |
2 files changed, 21 insertions, 1 deletions
diff --git a/config/waybar/config b/config/waybar/config index b66c499..05dd2eb 100644 --- a/config/waybar/config +++ b/config/waybar/config @@ -14,6 +14,15 @@ "deactivated": "" } }, + "sway/workspaces": { + "format": "{icon}", + "format-icons": { + "1": "", + "2": "", + "3": "", + "4": "" + } + }, "clock#local": { "interval": 1, "format": "{:%a %d %b %I:%M %p}", diff --git a/config/waybar/style.css b/config/waybar/style.css index d30f2a5..3743dc0 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -35,6 +35,7 @@ window#waybar { #window, #network, #pulseaudio, +#battery, #clock { padding: 2px 10px; margin: 0; @@ -44,11 +45,16 @@ window#waybar { #mode, #network, #pulseaudio, -#clock { +#battery { background: #93a1a1; color: #eee8d5; } +#clock { + background: #657b83; + color: #eee8d5; +} + #workspaces button, #workspaces button:hover, #workspaces button.focused, @@ -59,6 +65,11 @@ window#waybar { padding: 0 5px; } +#workspaces button { + background: #93a1a1; + color: #eee8d5; +} + #workspaces button:hover { background: #93a1a1; color: #eee8d5; |