awesomerc: remove class/instance printing

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-01-15 15:38:19 +01:00
parent dd98dceea8
commit 944e2fd7e2
2 changed files with 0 additions and 19 deletions

View File

@ -87,8 +87,6 @@ Window manager control
Clients
~~~~~~~
*Mod4 \+ Control \+ i*::
Print the client class and instance.
*Mod4 \+ Shift \+ r*::
Redraw the focused window.
*Mod4 \+ m*::

View File

@ -246,23 +246,6 @@ table.insert(clientkeys, key({ modkey, "Control" }, "space", awful.client.floati
table.insert(clientkeys, key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end))
table.insert(clientkeys, key({ modkey }, "o", awful.client.movetoscreen))
table.insert(clientkeys, key({ modkey, "Shift" }, "r", function (c) c:redraw() end))
table.insert(clientkeys, key({ modkey, "Ctrl" }, "i", function (c)
local s = c.screen
if mypromptbox[s].text then
mypromptbox[s].text = nil
else
mypromptbox[s].text = nil
if c.class then
mypromptbox[s].text = "Class: " .. c.class .. " "
end
if c.instance then
mypromptbox[s].text = mypromptbox[s].text .. "Instance: ".. c.instance .. " "
end
if c.role then
mypromptbox[s].text = mypromptbox[s].text .. "Role: ".. crole
end
end
end))
-- Layout manipulation
table.insert(globalkeys, key({ modkey }, "l", function () awful.tag.incmwfact(0.05) end))