diff --git a/waybar/config.jsonc b/waybar/config.jsonc index c342b85..266b9bd 100644 --- a/waybar/config.jsonc +++ b/waybar/config.jsonc @@ -13,8 +13,8 @@ "memory", "pulseaudio", "clock", - "custom/weather", "clock#simpleclock", + "custom/weather", "custom/tailscale", "network", "battery", @@ -163,7 +163,7 @@ "format": "", "format-icons": ["󰤟 ", "󰤢 ", "󰤥 ", "󰤨 "], "format-wifi": "{icon} {essid}", - "format-ethernet": "󰈀 {essid}", + "format-ethernet": "󰈀 ", "format-disconnected": "󰤮 ", "tooltip-format": "{ifname}", "tooltip-format-wifi": "{essid} ({signalStrength}%)", diff --git a/waybar/scripts/tailscale.sh b/waybar/scripts/tailscale.sh index 804f0bd..c0362b7 100755 --- a/waybar/scripts/tailscale.sh +++ b/waybar/scripts/tailscale.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash if tailscale status --json 2>/dev/null | grep -q '"BackendState": "Running"'; then - echo '{"text":"󰖂 Connected","class":"connected","tooltip":"Tailscale Connected"}' + echo '{"text":"󰛳  ","class":"connected","tooltip":"Tailscale Connected"}' else - echo '{"text":"󱗼 Disconnected","class":"disconnected","tooltip":"Tailscale Disconnected"}' + echo '{"text":"󰛳  ","class":"disconnected","tooltip":"Tailscale Disconnected"}' fi