84 lines
1.8 KiB
Lua
84 lines
1.8 KiB
Lua
|
--[[
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
awful.key({"Mod4", "Control"}, "j",
|
||
|
function ()
|
||
|
awful.screen.focus_relative( 1)
|
||
|
end,
|
||
|
{
|
||
|
description = "focus the next screen",
|
||
|
group = "screen"
|
||
|
}
|
||
|
),
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
awful.key({"Mod4", "Control"}, "k",
|
||
|
function ()
|
||
|
awful.screen.focus_relative(-1)
|
||
|
end,
|
||
|
{
|
||
|
description = "focus the previous screen",
|
||
|
group = "screen"
|
||
|
}
|
||
|
)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
-- Bind all key numbers to tags.
|
||
|
-- Be careful: we use keycodes to make it work on any keyboard layout.
|
||
|
-- This should map on the top row of your keyboard, usually 1 to 9.
|
||
|
for i = 1, 9 do
|
||
|
globalkeys = gears.table.join(globalkeys,
|
||
|
-- View tag only.
|
||
|
awful.key({ "Mod4" }, "#" .. i + 9,
|
||
|
function ()
|
||
|
local screen = awful.screen.focused()
|
||
|
local tag = screen.tags[i]
|
||
|
if tag then
|
||
|
tag:view_only()
|
||
|
end
|
||
|
end,
|
||
|
{description = "view tag #"..i, group = "tag"}),
|
||
|
-- Toggle tag display.
|
||
|
awful.key({ "Mod4", "Control" }, "#" .. i + 9,
|
||
|
function ()
|
||
|
local screen = awful.screen.focused()
|
||
|
local tag = screen.tags[i]
|
||
|
if tag then
|
||
|
awful.tag.viewtoggle(tag)
|
||
|
end
|
||
|
end,
|
||
|
{description = "toggle tag #" .. i, group = "tag"}),
|
||
|
-- Move client to tag.
|
||
|
awful.key({ "Mod4", "Shift" }, "#" .. i + 9,
|
||
|
function ()
|
||
|
if client.focus then
|
||
|
local tag = client.focus.screen.tags[i]
|
||
|
if tag then
|
||
|
client.focus:move_to_tag(tag)
|
||
|
end
|
||
|
end
|
||
|
end,
|
||
|
{description = "move focused client to tag #"..i, group = "tag"}),
|
||
|
-- Toggle tag on focused client.
|
||
|
awful.key({ "Mod4", "Control", "Shift" }, "#" .. i + 9,
|
||
|
function ()
|
||
|
if client.focus then
|
||
|
local tag = client.focus.screen.tags[i]
|
||
|
if tag then
|
||
|
client.focus:toggle_tag(tag)
|
||
|
end
|
||
|
end
|
||
|
end,
|
||
|
{description = "toggle focused client on tag #" .. i, group = "tag"})
|
||
|
)
|
||
|
end
|
||
|
--]]
|