You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
731 B
41 lines
731 B
#!/bin/bash
|
|
|
|
MAIN_DIR=$PWD
|
|
|
|
source $MAIN_DIR/programs/os/debian_install.sh
|
|
source $MAIN_DIR/programs/os/arch_install.sh
|
|
source $MAIN_DIR/programs/os/raspberry_install.sh
|
|
|
|
sleepTime=0.3
|
|
|
|
os_list=(debian arch raspberry)
|
|
pckgmngr_list=('sudo apt -y install' 'yes | sudo pacman -S' 'sudo apt -y install')
|
|
|
|
common_programs_list=(\
|
|
htop \
|
|
tmux \
|
|
git \
|
|
fish \
|
|
mc \
|
|
wget \
|
|
sudo \
|
|
unzip \
|
|
cmake \
|
|
make \
|
|
gcc \
|
|
exa)
|
|
|
|
default_installs_debian=(qutebrowser)
|
|
default_installs_arch=(qutebrowser)
|
|
default_installs_raspberry=(chromium)
|
|
|
|
custom_installs_debian=(dmenu fonts)
|
|
custom_installs_arch=(dmenu fonts)
|
|
custom_installs_raspberry=(dmenu fonts)
|
|
|
|
os_count=${#os_list[@]}
|
|
pckgmngr_count=${#pckgmngr_list[@]}
|
|
|
|
OS="Wil be initialized in setup.sh"
|
|
|