Home Screen customization #1379
-
I'm trying to programmatically modify the home screen. It looks like the display for the home screen is in part driven by this file: I have manually (via the GUI) created two icons which open up a filtered browser window.
I have written a script to pull out the unique genres from MPD and then add these genres as filters to the home screen. However, any manual edits to the home_list file are not reflected in UI, and when I restart myMPD the home_file is reset back to reflect the last changes made from the UI. Anyone have any hints/suggestion for me? I'm assuming these UI change are persisted in a DB somewhere? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You should not edit the If you want to modify this list when myMPD is running you should use the API. |
Beta Was this translation helpful? Give feedback.
You should not edit the
/var/lib/mympd/state/home_list
if myMPD is running. myMPD loads the list on startup, keeps it in the memory and writes the list on shutdown. Stop myMPD change the list and start myMPD again.If you want to modify this list when myMPD is running you should use the API.