Merge pull request #362 from augustogunsch/cmus_functions
Cmus functions
This commit is contained in:
commit
7467480c58
|
@ -31,10 +31,12 @@ s.mytasklist, -- Middle widget
|
||||||
To improve responsiveness of the widget when playback is changed by a shortcut use corresponding methods of the widget:
|
To improve responsiveness of the widget when playback is changed by a shortcut use corresponding methods of the widget:
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
awful.key({ modkey, "Shift" },
|
awful.key({ modkey, "Shift" }, "p", function () cmus_widget:play_pause() end, {description = "toggle track", group = "cmus"}),
|
||||||
"p",
|
awful.key({ }, "XF86AudioPlay", function () cmus_widget:play() end, {description = "play track", group = "cmus"}),
|
||||||
function() cmus_widget:play_pause() end,
|
awful.key({ }, "XF86AudioPause", function () cmus_widget:play() end, {description = "pause track", group = "cmus"}),
|
||||||
{description = "play/pause cmus", group = "custom"}),
|
awful.key({ }, "XF86AudioNext", function () cmus_widget:next_track() end, {description = "next track", group = "cmus"}),
|
||||||
|
awful.key({ }, "XF86AudioPrev", function () cmus_widget:prev_track() end, {description = "previous track", group = "cmus"}),
|
||||||
|
awful.key({ }, "XF86AudioStop", function () cmus_widget:stop() end, {description = "stop cmus", group = "cmus"}),
|
||||||
```
|
```
|
||||||
|
|
||||||
## Customization
|
## Customization
|
||||||
|
|
|
@ -96,14 +96,43 @@ local function worker(user_args)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function cmus_widget:play_pause()
|
function cmus_widget:update()
|
||||||
spawn("cmus-remote -u")
|
|
||||||
spawn.easy_async("cmus-remote -Q",
|
spawn.easy_async("cmus-remote -Q",
|
||||||
function(stdout, _, _, code)
|
function(stdout, _, _, code)
|
||||||
update_widget(cmus_widget.widget, stdout, _, _, code)
|
update_widget(cmus_widget.widget, stdout, _, _, code)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function cmus_widget:play_pause()
|
||||||
|
spawn("cmus-remote -u")
|
||||||
|
cmus_widget.update()
|
||||||
|
end
|
||||||
|
|
||||||
|
function cmus_widget:pause()
|
||||||
|
spawn("cmus-remote -U")
|
||||||
|
cmus_widget.update()
|
||||||
|
end
|
||||||
|
|
||||||
|
function cmus_widget:play()
|
||||||
|
spawn("cmus-remote -p")
|
||||||
|
cmus_widget.update()
|
||||||
|
end
|
||||||
|
|
||||||
|
function cmus_widget:next_track()
|
||||||
|
spawn("cmus-remote -n")
|
||||||
|
cmus_widget.update()
|
||||||
|
end
|
||||||
|
|
||||||
|
function cmus_widget:prev_track()
|
||||||
|
spawn("cmus-remote -r")
|
||||||
|
cmus_widget.update()
|
||||||
|
end
|
||||||
|
|
||||||
|
function cmus_widget:stop()
|
||||||
|
spawn("cmus-remote -s")
|
||||||
|
cmus_widget.update()
|
||||||
|
end
|
||||||
|
|
||||||
cmus_widget.widget:buttons(
|
cmus_widget.widget:buttons(
|
||||||
awful.util.table.join(
|
awful.util.table.join(
|
||||||
awful.button({}, 1, function() cmus_widget:play_pause() end)
|
awful.button({}, 1, function() cmus_widget:play_pause() end)
|
||||||
|
|
Loading…
Reference in New Issue