]> git.madduck.net Git - etc/awesome.git/blobdiff - .config/awesome/rc.lua

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix screen ordering
[etc/awesome.git] / .config / awesome / rc.lua
index 2f94d46164164c3f1c732bc0f030aeff15bf3b36..598191178bc3427fde7e9770af4c73cf0e6a7c25 100644 (file)
@@ -374,12 +374,12 @@ globalkeys = awful.util.table.join(
                   awful.util.eval, nil,
                   awful.util.getdir("cache") .. "/history_eval")
               end),
-    awful.key({ modkey }, "F1", function () awful.screen.focus(3) end),
-    awful.key({ modkey }, "F2", function () awful.screen.focus(1) end),
-    awful.key({ modkey }, "F3", function () awful.screen.focus(2) end),
-    awful.key({ modkey, "Shift" }, "F1", function () awful.client.movetoscreen(c, 3) end),
-    awful.key({ modkey, "Shift" }, "F2", function () awful.client.movetoscreen(c, 1) end),
-    awful.key({ modkey, "Shift" }, "F3", function () awful.client.movetoscreen(c, 2) end)
+    awful.key({ modkey }, "F1", function () awful.screen.focus(1) end),
+    awful.key({ modkey }, "F2", function () awful.screen.focus(2) end),
+    awful.key({ modkey }, "F3", function () awful.screen.focus(3) end),
+    awful.key({ modkey, "Shift" }, "F1", function () awful.client.movetoscreen(c, 1) end),
+    awful.key({ modkey, "Shift" }, "F2", function () awful.client.movetoscreen(c, 2) end),
+    awful.key({ modkey, "Shift" }, "F3", function () awful.client.movetoscreen(c, 3) end)
 )
 
 clientkeys = awful.util.table.join(