summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/rc.lua b/rc.lua
index aa3bb42..71b761c 100644
--- a/rc.lua
+++ b/rc.lua
@@ -388,10 +388,10 @@ globalkeys = awful.util.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,
- {description = "focus the next screen", group = "screen"}),
- awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end,
- {description = "focus the previous screen", group = "screen"}),
+-- 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,
+-- {description = "focus the previous screen", group = "screen"}),
awful.key({ modkey, }, "u", awful.client.urgent.jumpto,
{description = "jump to urgent client", group = "client"}),
@@ -490,9 +490,9 @@ globalkeys = awful.util.table.join(
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
- awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1)
+ awful.key({ modkey, }, "space", function () awful.layout.inc(1)
naughty.notify({ title = 'Layout', text = awful.layout.getname(), timeout = 1 }) end),
- awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1)
+ awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1)
naughty.notify({ title = 'Layout', text = awful.layout.getname(), timeout = 1 }) end),
awful.key({ modkey, "Mod1" }, "Right", function () awful.tag.incmwfact( 0.01) end),