aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/rc.lua
diff options
context:
space:
mode:
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,
+ },
+ }
}
-- }}}