This commit is contained in:
committer
2024-05-19 21:56:27 -05:00
parent 7bcb821cef
commit b605864b91

View File

@@ -247,20 +247,21 @@ if [ ${operation} == "dots" ] ; then
deploy_file "${dots_trg}/xorg/.*" "${file_path}/" deploy_file "${dots_trg}/xorg/.*" "${file_path}/"
# lemurs (display/login manager) # lemurs (display/login manager)
file_path=/etc/lemurs/wms
mkdir -p ${file_path}
deploy_file "${dots_trg}/lemurs/*" "${file_path}/"
#file_name=.xinitrc
#file_path=/etc/lemurs/wms #file_path=/etc/lemurs/wms
#if [ -f ${file_path}/${file_name} ] ; then #mkdir -p ${file_path}
# echo "" #deploy_file "${dots_trg}/lemurs/*" "${file_path}/"
# echo "softlink already exists: ${file_path}/${file_name}"
#else file_name=startx
# echo "" file_path=/etc/lemurs/wms
# echo "creating soft link: ${file_path}/${file_name} ➔ /home/${user}/.xinitrc" if [ -f ${file_path}/${file_name} ] ; then
# ln -s /home/${user}/.xinitrc /etc/lemurs/wms echo ""
#fi echo "softlink already exists: ${file_path}/${file_name}"
else
echo ""
echo "creating soft link: ${file_path}/${file_name} ➔ /usr/bin/startx"
ln -s /usr/bin/startx /etc/lemurs/wms
fi
fi fi