Use new color themes repo

This commit is contained in:
Guldoman 2021-12-19 18:12:34 +01:00
parent 16b4ec76ea
commit 6de08097e0
No known key found for this signature in database
GPG Key ID: C08A498EC7F1AFDD
2 changed files with 11 additions and 11 deletions

View File

@ -20,7 +20,7 @@ show_help() {
echo "-h --help Show this help and exit." echo "-h --help Show this help and exit."
echo "-p --prefix PREFIX Install directory prefix. Default: '/'." echo "-p --prefix PREFIX Install directory prefix. Default: '/'."
echo "-v --version VERSION Sets the version on the package name." echo "-v --version VERSION Sets the version on the package name."
echo " --addons Install 3rd party addons (currently RXI colors)." echo " --addons Install 3rd party addons (currently Lite XL colors)."
echo " --debug Debug this script." echo " --debug Debug this script."
echo "-A --appimage Create an AppImage (Linux only)." echo "-A --appimage Create an AppImage (Linux only)."
echo "-B --binary Create a normal / portable package or macOS bundle," echo "-B --binary Create a normal / portable package or macOS bundle,"
@ -45,13 +45,13 @@ install_addons() {
# Copy third party color themes # Copy third party color themes
curl --insecure \ curl --insecure \
-L "https://github.com/rxi/lite-colors/archive/master.zip" \ -L "https://github.com/lite-xl/lite-xl-colors/archive/master.zip" \
-o "${build_dir}/rxi-lite-colors.zip" -o "${build_dir}/lite-xl-colors.zip"
mkdir -p "${build_dir}/third/data/colors" mkdir -p "${build_dir}/third/data/colors"
unzip "${build_dir}/rxi-lite-colors.zip" -d "${build_dir}" unzip "${build_dir}/lite-xl-colors.zip" -d "${build_dir}"
mv "${build_dir}/lite-colors-master/colors" "${build_dir}/third/data" mv "${build_dir}/lite-xl-colors-master/colors" "${build_dir}/third/data"
rm -rf "${build_dir}/lite-colors-master" rm -rf "${build_dir}/lite-xl-colors-master"
for module_name in colors; do for module_name in colors; do
cp -r "${build_dir}/third/data/$module_name" "${data_dir}" cp -r "${build_dir}/third/data/$module_name" "${data_dir}"

View File

@ -15,12 +15,12 @@ copy_directory_from_repo () {
lite_copy_third_party_modules () { lite_copy_third_party_modules () {
local build="$1" local build="$1"
curl --retry 5 --retry-delay 3 --insecure -L "https://github.com/rxi/lite-colors/archive/master.zip" -o "$build/rxi-lite-colors.zip" || exit 1 curl --retry 5 --retry-delay 3 --insecure -L "https://github.com/lite-xl/lite-xl-colors/archive/master.zip" -o "$build/lite-xl-colors.zip" || exit 1
mkdir -p "$build/third/data/colors" "$build/third/data/plugins" mkdir -p "$build/third/data/colors" "$build/third/data/plugins"
unzip -qq "$build/rxi-lite-colors.zip" -d "$build" unzip -qq "$build/lite-xl-colors.zip" -d "$build"
mv "$build/lite-colors-master/colors" "$build/third/data" mv "$build/lite-xl-colors-master/colors" "$build/third/data"
rm -fr "$build/lite-colors-master" rm -fr "$build/lite-xl-colors-master"
rm "$build/rxi-lite-colors.zip" rm "$build/lite-xl-colors.zip"
} }
lite_branch=master lite_branch=master