From 90e607b6a3756619c5935396591f0b343a46e773 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Thu, 7 Jan 2021 10:39:53 +0100 Subject: Include Matrix support in WeeChat --- .config/awesome/rc.lua | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to '.config/awesome/rc.lua') diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 8eea786..04273c5 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -269,9 +269,9 @@ globalkeys = gears.table.join( {description = "swap with next client by index", group = "client"}), awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, {description = "swap with previous client by index", group = "client"}), - awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, + awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative(-1) end, {description = "focus the next screen", group = "screen"}), - awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, + awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative( 1) end, {description = "focus the previous screen", group = "screen"}), --awful.key({ modkey, }, "u", awful.client.urgent.jumpto, -- {description = "jump to urgent client", group = "client"}), @@ -525,7 +525,7 @@ awful.rules.rules = { } }, properties = { - tag = sharedtaglist[5] + tag = sharedtaglist[6] }, }, @@ -537,6 +537,20 @@ awful.rules.rules = { -- Set Firefox to always map on the tag named "2" on screen 1. -- { rule = { class = "Firefox" }, -- properties = { screen = 1, tag = "2" } }, + + -- World of Warcraft + { + rule_any = { + class = { + "wow.exe", + }, + }, + properties = { + tag = sharedtaglist[5], + maximized_vertical = true, + maximized_horizontal = true, + }, + } } -- }}} -- cgit v1.1