From 66fcaca495eae424bd0613ffad1264c3bb865826 Mon Sep 17 00:00:00 2001 From: Alexander Yakushev Date: Thu, 4 Nov 2010 17:29:21 +0200 Subject: Playlist add\replace --- awesompd.lua | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'awesompd.lua') diff --git a/awesompd.lua b/awesompd.lua index 1746077..6481dc9 100644 --- a/awesompd.lua +++ b/awesompd.lua @@ -216,6 +216,14 @@ function awesompd:command_load_playlist(name) end end +function awesompd:command_replace_playlist(name) + return function() + self:command("clear") + self:command("load " .. name) + self:command("play 1", self.update_track) + end +end + function awesompd:command_echo_prompt() return function() self:run_prompt("Sample text: ",function(s) @@ -305,8 +313,10 @@ function awesompd:get_playlists_menu() local new_menu = {} if table.getn(self.playlists_array) > 0 then for i = 1, table.getn(self.playlists_array) do - new_menu[i] = { self.playlists_array[i], - self:command_load_playlist(self.playlists_array[i]) } + local submenu = {} + submenu[1] = { "Add to current", self:command_load_playlist(self.playlists_array[i]) } + submenu[2] = { "Replace current", self:command_replace_playlist(self.playlists_array[i]) } + new_menu[i] = { self.playlists_array[i], submenu } end table.insert(new_menu, {"", ""}) -- This is a separator end -- cgit v1.2.3