mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2025-10-10 00:31:54 +05:30
13 lines
350 B
Lua
13 lines
350 B
Lua
-- Tailscale widget for Awesome Window Manager
|
|
local watch = require("awful.widget.watch")
|
|
local wibox = require("wibox")
|
|
|
|
local tailscale = wibox.widget.textbox("Home: NA")
|
|
watch("bash -c \"tailscale ping vega | awk '{print $NF}'\"", 10, function(_, stdout)
|
|
tailscale.text = "Home:" .. " " .. stdout
|
|
end)
|
|
|
|
return function()
|
|
return tailscale
|
|
end
|