diff --git a/rc.lua b/rc.lua index 9e9bdd3..09bb4f2 100644 --- a/rc.lua +++ b/rc.lua @@ -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"}),