From 0d645c80f49b12c1cd1bc5e30d53ac9f3f5585d7 Mon Sep 17 00:00:00 2001 From: doryan Date: Thu, 13 Feb 2025 00:24:54 +0400 Subject: [PATCH] feat(script): installation script is done --- install.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index 01060fb..def0d70 100755 --- a/install.sh +++ b/install.sh @@ -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