aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/rc.lua
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-01-07 10:39:53 +0100
committerPatrick Spek <p.spek@tyil.nl>2021-08-14 11:59:44 +0200
commit90e607b6a3756619c5935396591f0b343a46e773 (patch)
tree34b5b8975431de8b19da5d2f204b5c0d1e1a879a /.config/awesome/rc.lua
parente013f24aa5fc85dca36b61e57ecf276cd65b3ffb (diff)
Include Matrix support in WeeChat
Diffstat (limited to '.config/awesome/rc.lua')
-rw-r--r--.config/awesome/rc.lua20
1 files changed, 17 insertions, 3 deletions
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,
+ },
+ }
}
-- }}}