This commit is contained in:
committer
2024-05-19 17:17:49 -05:00
parent 5573929627
commit 84b41b069e

View File

@@ -243,10 +243,10 @@ if [ ${operation} == "dots" ] ; then
# lemurs (display/login manager)
file_name=.xinitrc
file_path=/etc/lemurs/wms
if [ -f ${trg_dir}/${file_name} ] ; then
echo "softlink exists: ${trg_dir}/${file_name}"
if [ -f ${file_path}/${file_name} ] ; then
echo "softlink exists: ${file_path}/${file_name}"
else
echo "creating soft link: ${trg_dir}/${file_name} ➔ /home/${user}/.xinitrc"
echo "creating soft link: ${file_path}/${file_name} ➔ /home/${user}/.xinitrc"
ln -s /home/${user}/.xinitrc /etc/lemurs/wms
fi