]> 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:

use nyxmms2 client
[etc/awesome.git] / .config / awesome / rc.lua
index 3cbc72f9a37cce6c98d145b75f354796af34a861..c79e623cb1815bad8a8e5fa3a84c23d603fccf78 100644 (file)
@@ -440,17 +440,17 @@ globalkeys = awful.util.table.join(globalkeys,
   awful.key({ cmdmodkey }, "Down", function () awful.util.spawn("amixer set PCM 2-") end),
   awful.key({ cmdmodkey }, "Home", function () awful.util.spawn("amixer set Mic toggle") end),
   awful.key({ cmdmodkey }, "End", function () awful.util.spawn("amixer set Master toggle") end),
-  awful.key({ cmdmodkey }, "Left", function () awful.util.spawn("xmms2 prev") end),
-  awful.key({ cmdmodkey }, "Right", function () awful.util.spawn("xmms2 next") end),
-  awful.key({ cmdmodkey }, "space", function () awful.util.spawn("xmms2 toggleplay") 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 }, "backslash", function ()
-    local f = io.popen('xmms2 current', 'r')
+    local f = io.popen('nyxmms2 status', 'r')
     naughty.notify({ title = "Now playing", text = f:read(), timeout = 5 })
     f:close()
   end),
   awful.key({ cmdmodkey, "Shift" }, "backslash", function ()
-    local f = io.popen('xmms2 list', 'r')
-    naughty.notify({ title = "Playlist", text = f:read(), timeout = 15 })
+    local f = io.popen('nyxmms2 list', 'r')
+    naughty.notify({ title = "Playlist", text = f:read("*a"), timeout = 15 })
     f:close()
   end)
 )