feat(script): installation script is done

This commit is contained in:
doryan 2025-02-13 00:24:54 +04:00
parent e9ca756b59
commit 0d645c80f4

View File

@ -47,18 +47,14 @@ install_config ~/ ${home_dir_configs[@]}
betterlockscreen -u ~/.bg/bg_5.png --fx blur --blur 1
echo "Do you want install custom bspwm xsession to /usr/share/xsessions/? It needs to become root (Y/N):"
echo "Do you want install custom bspwm xsession to /usr/share/xsessions/? It needs to become root (y/N):"
read advanced_install
case "${advanced_install}" in
"Y" | "y")
su root -c "cp -vf ./bspwm_session/* /usr/share/xsessions/"
;;
"N" | "n")
"N" | "n" | "*")
echo "Skip"
;;
*)
echo "Please, select your answer correctly"
exit 1
;;
esac