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.
28 lines
396 B
28 lines
396 B
#!/bin/bash
|
|
|
|
CONFIG_SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
MAIN_DIR=$PWD
|
|
|
|
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[@]}
|
|
|