2024-05-21 21:40:10 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -x -e
|
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
echo "Usage: $0 <theme specific assets dir name (ex. stack_wallet)>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
SELECT_ASSETS_DIR=$1
|
|
|
|
|
|
|
|
# declare full paths
|
2024-05-22 00:21:27 +00:00
|
|
|
ASSET_SOURCES_DIR="${APP_PROJECT_ROOT_DIR}/asset_sources"
|
|
|
|
ASSETS_DIR="${APP_PROJECT_ROOT_DIR}/assets"
|
|
|
|
|
2024-05-21 21:40:10 +00:00
|
|
|
|
|
|
|
# finally update symlinks
|
|
|
|
|
|
|
|
rm -f "${ASSETS_DIR}/default_themes"
|
|
|
|
ln -s "${ASSET_SOURCES_DIR}/bundled_themes/${SELECT_ASSETS_DIR}" "${ASSETS_DIR}/default_themes"
|
|
|
|
|
|
|
|
rm -f "${ASSETS_DIR}/icon"
|
|
|
|
ln -s "${ASSET_SOURCES_DIR}/icon/${SELECT_ASSETS_DIR}" "${ASSETS_DIR}/icon"
|
|
|
|
|
2024-05-22 16:32:29 +00:00
|
|
|
# run icon and image generators
|
|
|
|
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/asset_generators.sh"
|