diff --git a/dots/archinstall/common/packages.txt b/dots/archinstall/common/packages.txt index 26d10e3..5773235 100644 --- a/dots/archinstall/common/packages.txt +++ b/dots/archinstall/common/packages.txt @@ -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 diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index cee909d..ea98b32 100644 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -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