This commit is contained in:
t470p
2024-05-11 20:06:23 -05:00
parent 2f13896f79
commit 42129e2e10
2 changed files with 27 additions and 23 deletions

View File

@@ -6,6 +6,8 @@
OPTIONS_LOADED=true OPTIONS_LOADED=true
CLONE_TARGET_DIR=/tmp
USER=poq USER=poq
HYPRLAND=false HYPRLAND=false
I3WM=true I3WM=true

View File

@@ -28,7 +28,7 @@ if [ -z "${OPTIONS_LOADED}" ]; then
fi fi
user=${USER} user=${USER}
clone_trg=/tmp clone_trg=${CLONE_TARGET_DIR}
# ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ # ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
@@ -171,33 +171,35 @@ if [ ${operation} == "dots" ] ; then
fi fi
# hyprland # hyprland
#if [ ${deploy_hyprland} == "true" ] ; then if [ ${HYPRLAND} == "true" ] ; then
#fi
# hypridle # hypridle
file_name=hypridle.conf file_name=hypridle.conf
file_path=/home/${user}/.config/hypr file_path=/home/${user}/.config/hypr
deploy_file ${dots_trg}/hypridle/${file_name} ${file_path}/${file_name} deploy_file ${dots_trg}/hypridle/${file_name} ${file_path}/${file_name}
# hyprland # hyprland
file_name=hyprland.conf file_name=hyprland.conf
file_path=/home/${user}/.config/hypr file_path=/home/${user}/.config/hypr
deploy_file ${dots_trg}/hyprland/${file_name} ${file_path}/${file_name} deploy_file ${dots_trg}/hyprland/${file_name} ${file_path}/${file_name}
# hyprlock # hyprlock
file_name=hyprlock.conf file_name=hyprlock.conf
file_path=/home/${user}/.config/hypr file_path=/home/${user}/.config/hypr
deploy_file ${dots_trg}/hyprlock/${file_name} ${file_path}/${file_name} deploy_file ${dots_trg}/hyprlock/${file_name} ${file_path}/${file_name}
# hyprpaper # hyprpaper
file_name=hyprpaper.conf file_name=hyprpaper.conf
file_path=/home/${user}/.config/hypr file_path=/home/${user}/.config/hypr
deploy_file ${dots_trg}/hyprpaper/${file_name} ${file_path}/${file_name} deploy_file ${dots_trg}/hyprpaper/${file_name} ${file_path}/${file_name}
# waybar
file_path=/home/${user}/.config/waybar
mkdir -p ${file_path}
deploy_file "${dots_trg}/waybar/*" "${file_path}/"
fi
# waybar
file_path=/home/${user}/.config/waybar
mkdir -p ${file_path}
deploy_file "${dots_trg}/waybar/*" "${file_path}/"
# xorg # xorg
file_path=/home/${user} file_path=/home/${user}