This commit is contained in:
committer@tuxwarrior
2024-08-27 15:57:44 -05:00
parent a853d772b1
commit d305e331f3

View File

@@ -389,9 +389,9 @@ if [ ${operation} == "dots+" ] ; then
dotsplus_trg=${clone_trg}/dotsplus-main dotsplus_trg=${clone_trg}/dotsplus-main
echo "***** ${operation} *****" echo "***** ${operation} *****"
rm -rf ${dotsplus_trg} # rm -rf ${dotsplus_trg}
download_repo ${targz_dotsplus_url} # download_repo ${targz_dotsplus_url}
tree ${clone_trg} # tree ${clone_trg}
# ---------- # ----------
# fonts # fonts
@@ -400,46 +400,46 @@ if [ ${operation} == "dots+" ] ; then
echo "<!> 1" echo "<!> 1"
create_dir ${file_path} create_dir ${file_path}
echo "<!> 2" echo "<!> 2"
deploy_file "${dotsplus_trg}/fonts/install/*" "${file_path}/" # deploy_file "${dotsplus_trg}/fonts/install/*" "${file_path}/"
#
# ---------- # # ----------
# images # # images
# ---------- # # ----------
file_path=/home/${system_user}/.local/share/img # file_path=/home/${system_user}/.local/share/img
create_dir ${file_path} # create_dir ${file_path}
deploy_file "${dotsplus_trg}/images/*" "${file_path}/" # deploy_file "${dotsplus_trg}/images/*" "${file_path}/"
#
# ---------- # # ----------
# wallpapers # # wallpapers
# ---------- # # ----------
file_path=/home/${system_user}/.local/share/wp # file_path=/home/${system_user}/.local/share/wp
create_dir ${file_path} # create_dir ${file_path}
deploy_file "${dotsplus_trg}/wallpapers/install/*" "${file_path}/" # deploy_file "${dotsplus_trg}/wallpapers/install/*" "${file_path}/"
#
# ---------- # # ----------
# miscelanneous # # miscelanneous
# ---------- # # ----------
#
# vscodium theme # # vscodium theme
# https://vscodethemes.com/e/sdras.night-owl/night-owl-no-italics?language=javascript # # https://vscodethemes.com/e/sdras.night-owl/night-owl-no-italics?language=javascript
# https://github.com/sdras/night-owl-vscode-theme/tree/main/themes # # https://github.com/sdras/night-owl-vscode-theme/tree/main/themes
file_name=night-owl-vscode-theme-main.zip # file_name=night-owl-vscode-theme-main.zip
file_path=/home/${system_user}/.vscode-oss/extensions # file_path=/home/${system_user}/.vscode-oss/extensions
create_dir ${file_path} # create_dir ${file_path}
deploy_file "${dotsplus_trg}/miscellaneous/${file_name}" "${file_path}/" chown recursive # deploy_file "${dotsplus_trg}/miscellaneous/${file_name}" "${file_path}/" chown recursive
#
# sweet dark gtk theme # # sweet dark gtk theme
# https://github.com/EliverLara/Sweet # # https://github.com/EliverLara/Sweet
# https://github.com/EliverLara/Sweet/releases # # https://github.com/EliverLara/Sweet/releases
file_name=Sweet-Dark.tar.xz # file_name=Sweet-Dark.tar.xz
file_path=/usr/share/themes # file_path=/usr/share/themes
deploy_file "${dotsplus_trg}/miscellaneous/${file_name}" "${file_path}/" chown recursive # deploy_file "${dotsplus_trg}/miscellaneous/${file_name}" "${file_path}/" chown recursive
#
# ---------- # # ----------
# chowning # # chowning
# ---------- # # ----------
share_dir=/home/${system_user}/.local/share # share_dir=/home/${system_user}/.local/share
chown ${system_user}:${system_user} ${share_dir} # chown ${system_user}:${system_user} ${share_dir}
chown ${system_user}:${system_user} ${share_dir}/* # chown ${system_user}:${system_user} ${share_dir}/*
fi fi