summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-04-18 05:00:15 +0200
committerache <ache@ache.one>2017-04-18 05:00:15 +0200
commit006b507384c3aed5646c8743c22fa9dfc16e2221 (patch)
treef55b026f94dbd486b39e1c0e3ccc533d6e8ab8bb
parentFix view next/previous shortcut (diff)
Screen switch
-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),