#!/bin/sh
themes=(
manual
googleimage
webdirectory
)
theme=$1
if [ ! -z "${theme}" ]; then
if [[ ! "${themes[@]}" =~ "${theme}" ]]; then
theme=webdirectory
fi
else
echo "Theme chosed [${theme}]."
##TODO: 复制对应皮肤的配置文件到docker容器指定目录