Begin add ubuntu conf for zsh, fish, nvim
This commit is contained in:
parent
6d9de0907e
commit
e67c925593
2 changed files with 129 additions and 0 deletions
14
install.sh
Executable file
14
install.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue