/- removal of lemurs display / login manager

This commit is contained in:
committer
2024-08-26 14:31:16 -05:00
parent 9ce5290142
commit a2e6614e98
2 changed files with 0 additions and 18 deletions

View File

@@ -58,7 +58,6 @@ helix # editor
htop # view processes
inetutils # network programs (telnet++)
kitty # terminal
lemurs # display/login manager
less # text viewer
lf # file manager
lxappearance # gtk+ theme switcher

View File

@@ -364,23 +364,6 @@ if [ ${operation} == "dots" ] ; then
deploy_file "${dots_trg}/xorg/.*" "${file_path}/"
chmod 755 ${file_path}/.xinitrc
# lemurs (display/login manager)
file_name_src=.xinitrc
file_name_trg=i3
file_path_src=/home/${system_user}
file_path_trg=/etc/lemurs/wms
if [ -f ${file_path_trg}/${file_name_trg} ] ; then
echo ""
echo "softlink already exists: ${file_path}/${file_name_trg}"
ls -al ${file_path_trg}
else
echo ""
echo "creating soft link: ${file_path_src}/${file_name_src}${file_path_trg}/${file_name_trg}"
ln -s ${file_path_src}/${file_name_src} ${file_path_trg}/${file_name_trg}
chown -h ${system_user}:${system_user} ${file_path_trg}/${file_name_trg}
ls -al ${file_path_trg}
fi
fi
fi