1
0
Fork 0

Begin add ubuntu conf for zsh, fish, nvim

This commit is contained in:
Florian RICHER 2021-06-17 21:37:49 +02:00
parent 6d9de0907e
commit e67c925593
2 changed files with 129 additions and 0 deletions

14
install.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
OS_NAME=`cat /etc/os-release | grep "^NAME=" | sed 's/NAME=//g'`
OS_NAME=${OS_NAME^^} # UPPERCASE
case $OS_NAME in
"UBUNTU")
source ./install_scripts/ubuntu.sh
start
;;
*)
echo "OS not supported"
;;
esac