1
0

find windows

This commit is contained in:
Stephen Byrne
2020-04-29 17:25:12 -04:00
parent 335d208437
commit 73abe8a931

17
rc.lua
View File

@@ -124,6 +124,15 @@ end
myawesomemenu = {
{ "hotkeys", function() return false, hotkeys_popup.show_help end},
{ "kbscan", function() awful.spawn.with_shell("/home/sbyrne/bin/kbscan") end},
{ "find",
function()
local t = function(c)
return true
end
for c in awful.client.iterate(t) do
c.minimized = false
end
end },
{ "edit config", editor_cmd .. " " .. awesome.conffile },
{ "restart wm", awesome.restart },
{ "logout", function() awesome.quit() end},
@@ -327,10 +336,10 @@ globalkeys = awful.util.table.join(
-- Standard program
awful.key({ modkey, }, "x", function () awful.spawn(terminal) end,
{description = "open a terminal", group = "launcher"}),
awful.key({ modkey, "Control" }, "r", awesome.restart,
{description = "reload awesome", group = "awesome"}),
awful.key({ modkey, "Shift" }, "q", awesome.quit,
{description = "quit awesome", group = "awesome"}),
--awful.key({ modkey, "Control" }, "r", awesome.restart,
-- {description = "reload awesome", group = "awesome"}),
--awful.key({ modkey, "Shift" }, "q", awesome.quit,
-- {description = "quit awesome", group = "awesome"}),
awful.key({ modkey, "Shift" }, "l", function () awful.spawn("i3lock -c 000000") end, {description="lock", group="lock"}),