]> git.madduck.net Git - etc/awesome.git/commitdiff

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 toggle play for nyxmms2
authormartin f. krafft <madduck@madduck.net>
Wed, 3 Mar 2010 08:20:52 +0000 (09:20 +0100)
committermartin f. krafft <madduck@madduck.net>
Wed, 3 Mar 2010 08:20:58 +0000 (09:20 +0100)
.config/awesome/rc.lua

index 83fe0d3a07401a5c0baad9cfec0ea99bab31dba3..7b2ae0e58955e5629d421a5d6d017a42ea8eb1a0 100644 (file)
@@ -442,7 +442,7 @@ globalkeys = awful.util.table.join(globalkeys,
   awful.key({ cmdmodkey }, "End", function () awful.util.spawn("amixer set Master toggle") end),
   awful.key({ cmdmodkey }, "Left", function () awful.util.spawn("nyxmms2 prev") end),
   awful.key({ cmdmodkey }, "Right", function () awful.util.spawn("nyxmms2 next") end),
-  awful.key({ cmdmodkey }, "space", function () awful.util.spawn("nyxmms2 toggleplay") end),
+  awful.key({ cmdmodkey }, "space", function () awful.util.spawn("nyxmms2 toggle") end),
   awful.key({ cmdmodkey }, "backslash", function ()
     local f = io.popen('nyxmms2 status', 'r')
     naughty.notify({ title = "Now playing", text = f:read(), timeout = 5 })