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

@@ -4,11 +4,13 @@
# import using 'source' # import using 'source'
OPTIONS_LOADED=true OPTIONS_LOADED=true # used to check if options have been loaded
CLONE_TARGET_DIR=/tmp CLONE_TARGET_DIR=/tmp # directory to clone dots repository to
USER=poq USER=poq # system user
# window manager / compositor
HYPRLAND=false HYPRLAND=false
I3WM=true I3WM=true
QTILE=false QTILE=false

View File

@@ -6,9 +6,8 @@
# note: a re-login is needed for changes to take place # note: a re-login is needed for changes to take place
# #
# SYNCDIR_HOSTNAME SYNCDIR_t470p=/home/poq/nextcloud/syncDir # format: SYNCDIR_[HOSTNAME]
SYNCDIR_t470p=/home/poq/nextcloud/syncDir
GTK_THEME=Adapta-Nokto GTK_THEME=Adapta-Nokto
HYPRSHOT_DIR=/home/poq/syncDir/0_downloads HYPRSHOT_DIR=/home/poq/syncDir/0_downloads # only in use for hyprland

View File

@@ -200,10 +200,8 @@ if [ ${operation} == "dots" ] ; then
fi fi
# qtile
# xorg if [ ${QTILE} == "true" ] ; then
file_path=/home/${user}
deploy_file "${dots_trg}/xorg/.*" "${file_path}/"
# qtile # qtile
file_name=config.py file_name=config.py
@@ -213,6 +211,20 @@ if [ ${operation} == "dots" ] ; then
fi 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
# dots+ (wallpapers, fonts ++) # dots+ (wallpapers, fonts ++)
if [ ${operation} == "dots+" ] ; then if [ ${operation} == "dots+" ] ; then