47 lines
1.0 KiB
Bash
Executable File
47 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
##########################
|
|
# Color helpers
|
|
##########################
|
|
tput_reset() { tput sgr0; }
|
|
tput_black() { tput setaf 0; }
|
|
tput_red() { tput setaf 1; }
|
|
tput_green() { tput setaf 2; }
|
|
tput_yellow() { tput setaf 3; }
|
|
tput_cyan() { tput setaf 4; }
|
|
tput_purple() { tput setaf 5; }
|
|
tput_cyan() { tput setaf 6; }
|
|
tput_gray() { tput setaf 7; }
|
|
|
|
##########################
|
|
# Use exported variables from main detection script
|
|
##########################
|
|
OS="${DETECTED_OS}"
|
|
DDE="${DETECTED_DE}"
|
|
DE="${SELECTED_DE:-none}"
|
|
TWM="${SELECTED_TWM:-none}"
|
|
INSTALL_LEVEL="${INSTALL_LEVEL:-minimal}"
|
|
|
|
# Pause
|
|
read -n 1 -s -r -p "Press any key to continue"
|
|
|
|
# Before running FULL first run Minimal
|
|
bash debian-minimal.sh
|
|
|
|
# Now continue with FULL
|
|
# install tools
|
|
sudo apt install -y \
|
|
arandr \
|
|
catfish \
|
|
galculator \
|
|
network-manager \
|
|
network-manager-applet \
|
|
network-manager-openvpn \
|
|
numlockx \
|
|
pavucontrol \
|
|
playerctl \
|
|
xcolors \
|
|
gparted
|
|
|
|
|