diff --git a/Installer.sh b/Installer.sh index eda4cc7..2eafd93 100644 --- a/Installer.sh +++ b/Installer.sh @@ -7,17 +7,15 @@ case $input in ;; [iI]) make compile - make make_desktop_file - sudo make sudo_install read -r -p "Would you like to integrate the calculator to your start menu and desktop? (Y\n)" input2 case $input2 in [yY]) make make_desktop_file - chmod +x Calculator.desktop + sudo make sudo_install cp Calculator.desktop ${HOME}/Desktop ;; *) - echo "OK :(" + sudo make sudo_install ;; esac ;;