added a todo thing, for swapping tags between screens
This commit is contained in:
parent
34a67c3556
commit
b4896eac10
1 changed files with 7 additions and 0 deletions
7
rc.lua
7
rc.lua
|
@ -456,6 +456,13 @@ clientkeys = awful.util.table.join(
|
|||
awful.key({ modkey, 'Shift' }, 'c', function (c) c:kill() end),
|
||||
awful.key({ modkey, }, 'Return', function (c) c:swap(awful.client.getmaster()) end),
|
||||
awful.key({ modkey, 'Shift' }, 'o', awful.client.movetoscreen ),
|
||||
-- TODO: swap tags between screens
|
||||
awful.key({ modkey, }, ',',
|
||||
function(c)
|
||||
if screen.count() == 2 then
|
||||
end
|
||||
end
|
||||
),
|
||||
awful.key({ modkey, }, 'n', function (c) c.minimized = true end),
|
||||
|
||||
-- Window properties
|
||||
|
|
Loading…
Reference in a new issue