You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#!/usr/bin/with-contenv bash
|
|
|
|
|
|
|
|
|
|
# make our folders
|
|
|
|
|
mkdir -p \
|
|
|
|
|
config/fonts
|
|
|
|
|
|
|
|
|
|
# copy config
|
|
|
|
|
[[ ! -e /config/preferences.xml ]] && \
|
|
|
|
|
cp /defaults/preferences.xml /config/preferences.xml
|
|
|
|
|
|
|
|
|
|
# permissions
|
|
|
|
|
chown -R abc:abc \
|
|
|
|
|
/config \
|
|
|
|
|
/opt/ubooquity
|