diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -4,10 +4,10 @@ a simple utility that copies music and playlists from a folder to another folder ## 'amazing' features: -- glob include/exclude patterns -- doesn't copy existing files -- multiple different configuration sections for different media players or libraries -- stores a copy of your playlist to merge differences created on another media player +- [x] glob include/exclude patterns +- [x] doesn't copy existing files +- [x] multiple different configuration sections for different media players or libraries +- [ ] stores a copy of your playlist to merge differences created on another media player ## dependencies @@ -23,15 +23,21 @@ the config file is in ini format. here's the options: music_dir = ~/music playlist_dir = ~/playlists -exclude = junk/** - i don't like this music/** +target_music_dir = /mnt/player/Music +target_playlist_dir = /mnt/player/Playlists + +# multi-line ini works too (multiple definitions +# of the same key also works) +# exclude = junk/** +# i don't like this music/** # include = folders to include/** # don't copy existing files -# lazy = only check file size -# full = compare sha1 hash # none = blindly overwrite files +# lazy = only overwrite if a file doesn't exists +# size = only overwrite if file size doesn't match +# hash = only overwrite if sha1 hash doesn't match existing = lazy ``` |