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