diff options
Diffstat (limited to 'initialize.sh')
| -rw-r--r-- | initialize.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/initialize.sh b/initialize.sh new file mode 100644 index 0000000..e167ee7 --- /dev/null +++ b/initialize.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +sqlite3 $HOME/.mfs.db < dbschema.sql + +cat > $HOME/.mfsrc <<EOF +# This is the musicfs configuration file. Lines starting with "#"s are +# comments. +# +# So far, only musicpaths can be configured. Add one path on its own +# line for every music path you want musicfs to scan. Do not add +# anything on the line exept for the musicpath. +# +# Example: +# /home/orbekk/Music +EOF + +echo "./musicfs -d # to start musicfs" |
