fix(tailscale): correct home network ping target

This commit is contained in:
tux
2025-09-03 18:11:15 +05:30
parent 06975c66b0
commit 08e8a3be1d

View File

@@ -3,7 +3,7 @@ local watch = require("awful.widget.watch")
local wibox = require("wibox") local wibox = require("wibox")
local tailscale = wibox.widget.textbox("Home: NA") local tailscale = wibox.widget.textbox("Home: NA")
watch("bash -c \"tailscale ping vega | awk '{print $NF}'\"", 10, function(_, stdout) watch("bash -c \"tailscale ping homelab | awk '{print $NF}'\"", 10, function(_, stdout)
tailscale.text = "Home:" .. " " .. stdout tailscale.text = "Home:" .. " " .. stdout
end) end)