1
0
Fork 0
mirror of https://github.com/vinceliuice/WhiteSur-icon-theme.git synced 2024-11-22 13:50:13 +00:00

Merge pull request #231 from samwhelp/master

fix install.sh dest path and exit status
This commit is contained in:
Vince 2023-03-29 00:55:29 +08:00 committed by GitHub
commit 1e0f5afd1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ Usage: `./install.sh` **[OPTIONS...]**
| OPTIONS: | | | OPTIONS: | |
|:--------------------|:-------------| |:--------------------|:-------------|
|-d, --dest | Specify theme destination directory (Default: $HOME/.themes)| |-d, --dest | Specify theme destination directory (Default: $HOME/.local/share/icons)|
|-n, --name | Specify theme name (Default: WhiteSur)| |-n, --name | Specify theme name (Default: WhiteSur)|
|-t, --theme | Specify theme color variant(s) [default/purple/pink/red/orange/yellow/green/grey/all] (Default: blue)| |-t, --theme | Specify theme color variant(s) [default/purple/pink/red/orange/yellow/green/grey/all] (Default: blue)|
|-a, --alternative | Install alternative icons (redesigned MacOS default icons)| |-a, --alternative | Install alternative icons (redesigned MacOS default icons)|

View file

@ -56,8 +56,8 @@ install() {
cp -r "${SRC_DIR}"/{COPYING,AUTHORS} ${THEME_DIR} cp -r "${SRC_DIR}"/{COPYING,AUTHORS} ${THEME_DIR}
cp -r "${SRC_DIR}"/src/index.theme ${THEME_DIR} cp -r "${SRC_DIR}"/src/index.theme ${THEME_DIR}
cd ${THEME_DIR} #cd ${THEME_DIR}
sed -i "s/${name}/${name}${theme}${color}/g" index.theme sed -i "s/${name}/${name}${theme}${color}/g" ${THEME_DIR}/index.theme
if [[ ${color} == '' ]]; then if [[ ${color} == '' ]]; then
mkdir -p ${THEME_DIR}/status mkdir -p ${THEME_DIR}/status
@ -292,4 +292,4 @@ else
install_theme install_theme
fi fi
exit 1 #exit 0