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.
32 lines
453 B
32 lines
453 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
|
|
|
|
|
|
os_list=(debian arch raspberry)
|
|
|
|
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)
|
|
|
|
os_list_count=${#os_list[@]}
|
|
|