/ bug fix of parameter sending

This commit is contained in:
committer
2024-08-25 19:21:29 -05:00
parent fd5e8b170f
commit 81445d00ed

View File

@@ -264,13 +264,13 @@ if [ ${operation} == "dots" ] ; then
# dunst
file_name=dunstrc
file_path=/home/${system_user}/.config/dunst
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/dunst/${file_name}" "${file_path}/${file_name}"
# lf
file_name=lfrc
file_path=/home/${system_user}/.config/lf
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/lf/${file_name}" "${file_path}/${file_name}"
# firefox
@@ -288,7 +288,7 @@ if [ ${operation} == "dots" ] ; then
file_name=userChrome.css
file_path=${ffpd}/chrome
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/firefox/${file_name}" "${file_path}/${file_name}"
fi
@@ -298,7 +298,7 @@ if [ ${operation} == "dots" ] ; then
# ".gtkrc-2.0" is overwritten
file_name=settings.ini
file_path=/home/${system_user}/.config/gtk-3.0
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/gtk/${file_name}" "${file_path}/${file_name}"
file_name=.gtk-bookmarks
@@ -314,7 +314,7 @@ if [ ${operation} == "dots" ] ; then
file_name=index.theme
file_path=/home/${system_user}/.icons/default
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/gtk/${file_name}" "${file_path}/${file_name}"
# helix
@@ -324,20 +324,20 @@ if [ ${operation} == "dots" ] ; then
# nitrogen
file_path=/home/${system_user}/.config/nitrogen
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/nitrogen/*" "${file_path}/"
# pcmanfm
# bookmarks found in "dots/gtk/.gtk-bookmarks"
file_name=pcmanfm.conf
file_path=/home/${system_user}/.config/pcmanfm/default
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/pcmanfm/${file_name}" "${file_path}/${file_name}"
# vscodium
file_name=settings.json
file_path=/home/${system_user}/.config/VSCodium/User
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/vscodium/${file_name}" "${file_path}/${file_name}"
# i3wm
@@ -346,13 +346,13 @@ if [ ${operation} == "dots" ] ; then
# i3
file_name=config
file_path=/home/${system_user}/.config/i3
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/i3wm/${file_name}" "${file_path}/"
# i3status
file_name=config
file_path=/home/${system_user}/.config/i3status
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dots_trg}/i3status/${file_name}" "${file_path}/"
fi
@@ -400,21 +400,21 @@ if [ ${operation} == "dots+" ] ; then
# fonts
# ----------
file_path=/home/${system_user}/.local/share/fonts
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dotsplus_trg}/fonts/install/*" "${file_path}/"
# ----------
# images
# ----------
file_path=/home/${system_user}/.local/share/img
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dotsplus_trg}/images/*" "${file_path}/"
# ----------
# wallpapers
# ----------
file_path=/home/${system_user}/.local/share/wp
create_dir(${file_path})
create_dir ${file_path}
deploy_file "${dotsplus_trg}/wallpapers/install/*" "${file_path}/"
# ----------
@@ -426,7 +426,7 @@ if [ ${operation} == "dots+" ] ; then
# https://github.com/sdras/night-owl-vscode-theme/tree/main/themes
file_name=night-owl-vscode-theme-main.zip
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
# sweet dark gtk theme
@@ -440,7 +440,7 @@ if [ ${operation} == "dots+" ] ; then
# chowning
# ----------
share_dir=/home/${system_user}/.local/share
create_dir(${file_path})
create_dir ${file_path}
chown ${system_user}:${system_user} ${share_dir}
chown ${system_user}:${system_user} ${share_dir}/*