find windows
This commit is contained in:
17
rc.lua
17
rc.lua
@@ -124,6 +124,15 @@ end
|
|||||||
myawesomemenu = {
|
myawesomemenu = {
|
||||||
{ "hotkeys", function() return false, hotkeys_popup.show_help end},
|
{ "hotkeys", function() return false, hotkeys_popup.show_help end},
|
||||||
{ "kbscan", function() awful.spawn.with_shell("/home/sbyrne/bin/kbscan") 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 },
|
{ "edit config", editor_cmd .. " " .. awesome.conffile },
|
||||||
{ "restart wm", awesome.restart },
|
{ "restart wm", awesome.restart },
|
||||||
{ "logout", function() awesome.quit() end},
|
{ "logout", function() awesome.quit() end},
|
||||||
@@ -327,10 +336,10 @@ globalkeys = awful.util.table.join(
|
|||||||
-- Standard program
|
-- Standard program
|
||||||
awful.key({ modkey, }, "x", function () awful.spawn(terminal) end,
|
awful.key({ modkey, }, "x", function () awful.spawn(terminal) end,
|
||||||
{description = "open a terminal", group = "launcher"}),
|
{description = "open a terminal", group = "launcher"}),
|
||||||
awful.key({ modkey, "Control" }, "r", awesome.restart,
|
--awful.key({ modkey, "Control" }, "r", awesome.restart,
|
||||||
{description = "reload awesome", group = "awesome"}),
|
-- {description = "reload awesome", group = "awesome"}),
|
||||||
awful.key({ modkey, "Shift" }, "q", awesome.quit,
|
--awful.key({ modkey, "Shift" }, "q", awesome.quit,
|
||||||
{description = "quit awesome", group = "awesome"}),
|
-- {description = "quit awesome", group = "awesome"}),
|
||||||
|
|
||||||
awful.key({ modkey, "Shift" }, "l", function () awful.spawn("i3lock -c 000000") end, {description="lock", group="lock"}),
|
awful.key({ modkey, "Shift" }, "l", function () awful.spawn("i3lock -c 000000") end, {description="lock", group="lock"}),
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user