mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-10-10 10:21:53 +05:30
Compare commits
2 Commits
06975c66b0
...
1424e3718d
Author | SHA1 | Date | |
---|---|---|---|
1424e3718d
|
|||
08e8a3be1d
|
@@ -7,7 +7,7 @@ local modkey = mod.modkey
|
||||
client.connect_signal("request::default_keybindings", function()
|
||||
awful.keyboard.append_client_keybindings({
|
||||
-- Client state management.
|
||||
awful.key({ modkey }, "f", function(c)
|
||||
awful.key({ modkey, mod.shift }, "f", function(c)
|
||||
c.fullscreen = not c.fullscreen
|
||||
c:raise()
|
||||
end, { description = "toggle fullscreen", group = "client" }),
|
||||
|
@@ -54,7 +54,7 @@ awful.keyboard.append_global_keybindings({
|
||||
awful.spawn("GalaxyBudsClient")
|
||||
end, { description = "open galaxy buds client", group = "launcher" }),
|
||||
|
||||
awful.key({ modkey }, "t", function()
|
||||
awful.key({ modkey }, "f", function()
|
||||
awful.spawn(apps.file_explorer)
|
||||
end, { description = "open file explorer", group = "launcher" }),
|
||||
|
||||
|
@@ -3,7 +3,7 @@ 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)
|
||||
watch("bash -c \"tailscale ping homelab | awk '{print $NF}'\"", 10, function(_, stdout)
|
||||
tailscale.text = "Home:" .. " " .. stdout
|
||||
end)
|
||||
|
||||
|
Reference in New Issue
Block a user