add missing software reinstall new Debian
This commit is contained in:
parent
fac6237eab
commit
2b2a0ac827
|
@ -251,5 +251,5 @@ exec --no-startup-id i3-msg 'workspace $WS1; exec firefox;'
|
||||||
exec --no-startup-id i3-msg 'workspace $WS2; exec emacs'
|
exec --no-startup-id i3-msg 'workspace $WS2; exec emacs'
|
||||||
exec --no-startup-id i3-msg 'exec thunderbird'
|
exec --no-startup-id i3-msg 'exec thunderbird'
|
||||||
exec --no-startup-id i3-msg 'exec keepassxc'
|
exec --no-startup-id i3-msg 'exec keepassxc'
|
||||||
exec --no-startup-id i3-msg 'exec nextcloud'
|
# exec --no-startup-id i3-msg 'exec nextcloud'
|
||||||
exec --no-startup-id i3-msg 'workspace $WS3; exec urxvt;'
|
exec --no-startup-id i3-msg 'workspace $WS3; exec urxvt;'
|
||||||
|
|
|
@ -188,6 +188,10 @@ install_i3() {
|
||||||
|
|
||||||
DEBIAN_FRONTEND=noninteractive
|
DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
|
||||||
|
# TODO add non-free to apt/sources.list
|
||||||
|
|
||||||
|
|
||||||
apt update
|
apt update
|
||||||
apt install -y \
|
apt install -y \
|
||||||
alsa-utils \
|
alsa-utils \
|
||||||
|
@ -197,10 +201,14 @@ install_i3() {
|
||||||
emacs \
|
emacs \
|
||||||
feh \
|
feh \
|
||||||
firefox-esr \
|
firefox-esr \
|
||||||
|
firmware-iwlwifi \
|
||||||
|
firmware-linux-nonfree \
|
||||||
|
firmware-realtek \
|
||||||
fonts-font-awesome \
|
fonts-font-awesome \
|
||||||
fonts-noto \
|
fonts-noto \
|
||||||
fonts-noto-cjk \
|
fonts-noto-cjk \
|
||||||
fswebcam \
|
fswebcam \
|
||||||
|
gimp \
|
||||||
i3 \
|
i3 \
|
||||||
i3lock \
|
i3lock \
|
||||||
i3lock-fancy \
|
i3lock-fancy \
|
||||||
|
@ -223,6 +231,7 @@ install_i3() {
|
||||||
thunderbird \
|
thunderbird \
|
||||||
thunderbird-l10n-de \
|
thunderbird-l10n-de \
|
||||||
thunderbird-l10n-en-gb \
|
thunderbird-l10n-en-gb \
|
||||||
|
vlc \
|
||||||
xclip \
|
xclip \
|
||||||
xorg \
|
xorg \
|
||||||
--no-install-recommends
|
--no-install-recommends
|
||||||
|
@ -284,7 +293,7 @@ install_compose() {
|
||||||
# https://github.com/docker/compose/releases
|
# https://github.com/docker/compose/releases
|
||||||
# btw: *not* for raspbian! you got 3 choices: hypriot, install via pip or build yourself
|
# btw: *not* for raspbian! you got 3 choices: hypriot, install via pip or build yourself
|
||||||
# https://www.berthon.eu/2017/getting-docker-compose-on-raspberry-pi-arm-the-easy-way/
|
# https://www.berthon.eu/2017/getting-docker-compose-on-raspberry-pi-arm-the-easy-way/
|
||||||
VERS="1.23.2"
|
VERS="1.24.1"
|
||||||
FILE="docker-compose-$(uname -s)-$(uname -m)"
|
FILE="docker-compose-$(uname -s)-$(uname -m)"
|
||||||
echo "installing docker-compose $VERS ... curling from github"
|
echo "installing docker-compose $VERS ... curling from github"
|
||||||
|
|
||||||
|
@ -458,9 +467,11 @@ main() {
|
||||||
install_server_base
|
install_server_base
|
||||||
;;
|
;;
|
||||||
desktop)
|
desktop)
|
||||||
apt_sources buster
|
# apt_sources buster
|
||||||
|
base_applications
|
||||||
|
install_docker
|
||||||
|
install_compose
|
||||||
install_i3
|
install_i3
|
||||||
apt_sources buster
|
|
||||||
if [ -f "./get_private_stuff.sh" ]; then
|
if [ -f "./get_private_stuff.sh" ]; then
|
||||||
source get_private_stuff.sh
|
source get_private_stuff.sh
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue