From 4ff51d5189a27c1d4501cfa3bd2423e9b2235c8d Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 17 Aug 2009 17:37:38 +0200 Subject: [PATCH] awesomerc: remove marking Signed-off-by: Julien Danjou --- awesomerc.lua.in | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/awesomerc.lua.in b/awesomerc.lua.in index c7a3403e2..5f029390c 100644 --- a/awesomerc.lua.in +++ b/awesomerc.lua.in @@ -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, }, "o", awful.client.movetoscreen ), awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), - awful.key({ modkey }, "t", awful.client.togglemarked), awful.key({ modkey,}, "m", function (c) 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 awful.client.toggletag(tags[client.focus.screen][i]) 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 @@ -336,16 +326,6 @@ awful.hooks.unfocus.register(function (c) 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. awful.hooks.mouse_enter.register(function (c) -- Sloppy focus, but disabled for magnifier layout