diff --git a/install_debian.sh b/install_debian.sh index 8d8f165..08c5220 100755 --- a/install_debian.sh +++ b/install_debian.sh @@ -46,10 +46,10 @@ fi # remove autoinstalled stterm sudo apt remove stterm -y - -if [ ! -d ~/gui ] +mkdir ~/Development || true +if [ ! -d ~/Development/gui ] then - git clone https://git.digitalstudium.com/digitalstudium/ubuntu-gui ~/gui + git clone https://git.digitalstudium.com/digitalstudium/ubuntu-gui ~/Development/gui fi for tool in dwm st sent @@ -57,7 +57,7 @@ do # compiling dwm if ! command -v $tool &> /dev/null then - cd ~/gui/$tool + cd ~/Development/gui/$tool sudo make install clean cd - fi