feat(script): installation script is done
This commit is contained in:
parent
e9ca756b59
commit
0d645c80f4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue