This commit is contained in:
t470p
2024-05-11 20:12:01 -05:00
parent 42129e2e10
commit 05c37bf0e9
3 changed files with 28 additions and 15 deletions

View File

@@ -200,16 +200,28 @@ if [ ${operation} == "dots" ] ; then
fi
# xorg
file_path=/home/${user}
deploy_file "${dots_trg}/xorg/.*" "${file_path}/"
# qtile
file_name=config.py
file_path=/home/${user}/.config/qtile
mkdir -p ${file_path}
deploy_file "${dots_trg}/qtile/${file_name}" "${file_path}/"
if [ ${QTILE} == "true" ] ; then
# qtile
file_name=config.py
file_path=/home/${user}/.config/qtile
mkdir -p ${file_path}
deploy_file "${dots_trg}/qtile/${file_name}" "${file_path}/"
fi
if [ ${I3WM} == "true" ] ; then
echo "i3wm"
fi
if [ ${I3WM} == "true" ] || [ ${QTILE} == "true" ] ; then
# xorg
file_path=/home/${user}
deploy_file "${dots_trg}/xorg/.*" "${file_path}/"
fi
fi