awesomerc: remove marking
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
c505f2d2e7
commit
4ff51d5189
|
@ -264,7 +264,6 @@ clientkeys = awful.util.table.join(
|
||||||
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
|
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
|
||||||
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
|
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
|
||||||
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
|
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
|
||||||
awful.key({ modkey }, "t", awful.client.togglemarked),
|
|
||||||
awful.key({ modkey,}, "m",
|
awful.key({ modkey,}, "m",
|
||||||
function (c)
|
function (c)
|
||||||
c.maximized_horizontal = not c.maximized_horizontal
|
c.maximized_horizontal = not c.maximized_horizontal
|
||||||
|
@ -305,16 +304,7 @@ for i = 1, keynumber do
|
||||||
if client.focus and tags[client.focus.screen][i] then
|
if client.focus and tags[client.focus.screen][i] then
|
||||||
awful.client.toggletag(tags[client.focus.screen][i])
|
awful.client.toggletag(tags[client.focus.screen][i])
|
||||||
end
|
end
|
||||||
end),
|
end))
|
||||||
awful.key({ modkey, "Shift" }, "F" .. i,
|
|
||||||
function ()
|
|
||||||
local screen = mouse.screen
|
|
||||||
if tags[screen][i] then
|
|
||||||
for k, c in pairs(awful.client.getmarked()) do
|
|
||||||
awful.client.movetotag(tags[screen][i], c)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end))
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set keys
|
-- Set keys
|
||||||
|
@ -336,16 +326,6 @@ awful.hooks.unfocus.register(function (c)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- Hook function to execute when marking a client
|
|
||||||
awful.hooks.marked.register(function (c)
|
|
||||||
c.border_color = beautiful.border_marked
|
|
||||||
end)
|
|
||||||
|
|
||||||
-- Hook function to execute when unmarking a client.
|
|
||||||
awful.hooks.unmarked.register(function (c)
|
|
||||||
c.border_color = beautiful.border_focus
|
|
||||||
end)
|
|
||||||
|
|
||||||
-- Hook function to execute when the mouse enters a client.
|
-- Hook function to execute when the mouse enters a client.
|
||||||
awful.hooks.mouse_enter.register(function (c)
|
awful.hooks.mouse_enter.register(function (c)
|
||||||
-- Sloppy focus, but disabled for magnifier layout
|
-- Sloppy focus, but disabled for magnifier layout
|
||||||
|
|
Loading…
Reference in New Issue