-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit
executable file
·24 lines (21 loc) · 906 Bytes
/
init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
###############################################################
## AUTHOR Name: Boyang Yan ##
## KEYWORDs: Start-up all of system set-up ##
## PURPOSE: Management package and Dot configureation ##
## ENVIRONment: mac, Linux ##
## COMMENTs: ##
## Last Modified Date: 25.09.2021 ##
###############################################################
## pull latest of all git submodules
#git submodule update --recursive --remote
# Install System packages
read -p "Do you want to check/install requied packages (Y/n)? " -n 1 -r
echo # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]; then
source $PWD/packageInstall/installPackage
fi
# Set-up Meta WM
source $PWD/metaWM/setupWM $PWD
#make execs
#sh ./Scripts/init