vlc: move persisted data to ~/private, and add .cache/vlc, for artwork

This commit is contained in:
2023-07-13 07:20:13 +00:00
parent f2eba95dfc
commit f54f972056

View File

@@ -10,8 +10,13 @@ let
in in
{ {
sane.programs.vlc = { sane.programs.vlc = {
# vlc remembers play position in ~/.config/vlc/vlc-qt-interface.conf persist.private = [
persist.plaintext = [ ".config/vlc" ]; # vlc remembers play position in ~/.config/vlc/vlc-qt-interface.conf
# filenames are stored in plaintext (unlike mpv, which i think hashes them)
".config/vlc"
# vlc caches artwork. i'm not sure where it gets the artwork (internet? embedded metadata?)
".cache/vlc"
];
fs.".config/vlc/vlcrc".symlink.text = '' fs.".config/vlc/vlcrc".symlink.text = ''
[podcast] [podcast]
podcast-urls=${podcast-urls} podcast-urls=${podcast-urls}