Compare commits

...

2 Commits

Author SHA1 Message Date
tux
1424e3718d chore(keys): update keybindings 2025-09-03 18:24:57 +05:30
tux
08e8a3be1d fix(tailscale): correct home network ping target 2025-09-03 18:11:15 +05:30
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ local modkey = mod.modkey
client.connect_signal("request::default_keybindings", function() client.connect_signal("request::default_keybindings", function()
awful.keyboard.append_client_keybindings({ awful.keyboard.append_client_keybindings({
-- Client state management. -- Client state management.
awful.key({ modkey }, "f", function(c) awful.key({ modkey, mod.shift }, "f", function(c)
c.fullscreen = not c.fullscreen c.fullscreen = not c.fullscreen
c:raise() c:raise()
end, { description = "toggle fullscreen", group = "client" }), end, { description = "toggle fullscreen", group = "client" }),

View File

@@ -54,7 +54,7 @@ awful.keyboard.append_global_keybindings({
awful.spawn("GalaxyBudsClient") awful.spawn("GalaxyBudsClient")
end, { description = "open galaxy buds client", group = "launcher" }), end, { description = "open galaxy buds client", group = "launcher" }),
awful.key({ modkey }, "t", function() awful.key({ modkey }, "f", function()
awful.spawn(apps.file_explorer) awful.spawn(apps.file_explorer)
end, { description = "open file explorer", group = "launcher" }), end, { description = "open file explorer", group = "launcher" }),

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)