diff options
| -rw-r--r-- | dot-config/waybar/config.jsonc | 64 |
1 files changed, 31 insertions, 33 deletions
diff --git a/dot-config/waybar/config.jsonc b/dot-config/waybar/config.jsonc index 634105e..3676989 100644 --- a/dot-config/waybar/config.jsonc +++ b/dot-config/waybar/config.jsonc @@ -5,23 +5,24 @@ // "spacing": 20, // Gaps between modules (I turned it off in favor of spacing in CSS) "modules-left": [ - "custom/archicon", + "custom/swaync", "niri/workspaces", "niri/window", ], "modules-center": [], "modules-right": [ "network", + "custom/separator", "pulseaudio", + "custom/separator", "battery", "custom/separator", "clock", - "custom/swaync", ], - "custom/archicon": { - "format": "", - "tooltip": false, + "niri/workspaces": { + "format": "({value})", + "current-only": true, }, "niri/window": { "format": "{app_id}", @@ -30,14 +31,14 @@ "tooltip": false, "format": "{icon}", "format-icons": { - "notification": "<span foreground='red'></span>", - "none": "", - "dnd-notification": "<span foreground='red'></span>", - "dnd-none": "", - "inhibited-notification": "<span foreground='red'></span>", - "inhibited-none": "", - "dnd-inhibited-notification": "<span foreground='red'></span>", - "dnd-inhibited-none": "" + "notification": " *", + "none": " -", + "dnd-notification": " *", + "dnd-none": " -", + "inhibited-notification": " *", + "inhibited-none": " -", + "dnd-inhibited-notification": " *", + "dnd-inhibited-none": " -" }, "return-type": "json", "exec-if": "which swaync-client", @@ -48,14 +49,14 @@ }, "custom/separator": { - "format": "", + "format": " ", "tooltip": false, }, "clock": { // "timezone": "America/New_York", "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", - "format": "{:%a %b %d %r}", + "format": "{:%a %F %T}", "interval": 1, }, "battery": { @@ -63,39 +64,36 @@ "warning": 30, "critical": 15 }, - "format": "{capacity}% {icon}", - "format-charging": "{capacity}% ", - "format-plugged": "{capacity}% ", - "format-alt": "{time} {icon}", - // "format-full": "", we're never full, we're capped at 80. - "format-icons": ["", "", "", "", ""], + "format": "Bat:{capacity}%", + "format-charging": "Charging:{capacity}%", + "format-plugged": "Plugged:{capacity}%", + "format-alt": "Bat:{time}", }, "network": { // "interface": "wlp2*", // (Optional) To force the use of this interface - "format-wifi": "{icon} {essid}", - "format-icons": ["", "", "", ""], - "format-ethernet": " {ipaddr}/{cidr}", + "format-wifi": "Wifi:{essid}({signalStrength}%)", + "format-ethernet": "Wired:{ipaddr}/{cidr}", "tooltip-format": "{ifname} via {gwaddr}/{cidr}\ni am {ipaddr}/{cidr}\n{signalStrength}% strength at {bandwidthUpBytes} up and {bandwidthDownBytes} down", "format-linked": " {ifname}:No IP", - "format-disconnected": "⚠ Disconnected", + "format-disconnected": "Disconnected", "format-alt": "{ifname}={ipaddr}/{cidr}" }, "pulseaudio": { // "scroll-step": 1, // %, can be a float - "format": "{icon}{volume}% {format_source}", - "format-bluetooth": "{icon}{volume}% {format_source}", - "format-bluetooth-muted": "{icon} {format_source}", - "format-muted": " {format_source}", - "format-source": "{volume}%", - "format-source-muted": "", + "format": "{icon}:{volume}% | {format_source}", + "format-bluetooth": "{icon}(BT):{volume}% | {format_source}", + "format-bluetooth-muted": "{icon}(BT):Muted | {format_source}", + "format-muted": "{icon}:Muted | {format_source}", + "format-source": "Mic:{volume}%", + "format-source-muted": "Mic:Muted", "format-icons": { - "headphone": "", + "headphone": "Headphones", "hands-free": "", "headset": "", "phone": "", "portable": "", "car": "", - "default": ["", "", ""] + "default": "Speakers" }, }, } |
