-- MPD
mpd = {
+ -- netcat path
+ netcat = 'nc',
+
-- 500 or less makes seconds increment relatively smoothly while playing
update_interval = 1000,
-- track metadata: %artist, %title, %num, %album, %year, %len
-- current track position: %pos
-- escape for the percent character: %%
- template = "%title by %artist, track %num from %album, %year (%pos/%len) [%volume]",
+ template = "%title by %artist, track %num from %album, %year " ..
+ "(%pos/%len) [%volume]",
+
+ -- output debug filename (false or nil for no debug output)
+ debug = false,
},
-- Memory monitor
-- Scripts
exec = {
psi = {
- program = '~/.ion3/psi_status.sh',
+ program = '~/.ion3/psi_status_server.py 1', -- 1 segundo
retry_delay = 1 * 1000, -- 1 segundo
hint_regexp = {
important = '^[0-9]',
},
},
maildir = {
- program = '~/.ion3/maildir_status_server.sh 10',
- retry_delay = 10 * 1000,
+ program = '~/.ion3/maildir_status_server.py 10', -- 10 segundos
+ retry_delay = 10 * 1000, -- 10 segundos
hint_regexp = {
important = '([0-9]+)',
},