From 7fd8bc42a4e0f35ca1077be1a9cb85bd463c30b0 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 28 Aug 2022 10:03:35 +0200 Subject: [PATCH] mint 21 adaptions --- apt-extend-mint | 27 ++++++++++++++++++--------- init_homepath | 5 +++-- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/apt-extend-mint b/apt-extend-mint index 38dd499..92ef1c6 100755 --- a/apt-extend-mint +++ b/apt-extend-mint @@ -5,11 +5,13 @@ # Additional Packages COMMON=" joe git tmux +synaptic +owncloud-client keepass2 xdotool +tlp tlp-rdw brasero sshfs curlftpfs openssh-server fonts-powerline powerline python3-powerline python3-powerline-gitstatus -lib32stdc++6 " MULTIMEDIA=" @@ -17,28 +19,32 @@ ffmpeg kodi kodi-pvr-hts spotify-client photocollage -ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame +ardour calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs guitarix-ladspa swh-plugins +ubuntustudio-controls carla +sonata elisa obs-studio kdenlive +gxtuner +lame " TOOLS=" evolution gnuplot -gnome-boxes gvncviewer texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio gimp +kicad kicad-packages3d +openscad freecad " PROGRAMMING=" +arduino +minicom pycodestyle virtualenv -python-coverage python3-coverage python-jinja2 python3-jinja2 -python-wxtools python3-wxgtk4.0 -python3-evdev python3-serial -python3-sphinx python3-sphinx-rtd-theme +python3-wxgtk4.0 +python3-pip meld -retext " ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING @@ -52,9 +58,12 @@ echo --------------------------------------------------------------------------- case "$response" in [yY][eE][sS]|[yY]) sudo apt-get -y install $ALL + # + echo + echo + echo You need to enable and start tlp, if you want to have it running. ;; *) echo Installation aborted! ;; esac - diff --git a/init_homepath b/init_homepath index ea2d8ef..f17814b 100755 --- a/init_homepath +++ b/init_homepath @@ -1,7 +1,7 @@ #!/bin/sh # -BASE_FOLDERS="data Downloads media_images Videos C64" +BASE_FOLDERS="Downloads media_images Videos C64" VIP_FOLDERS="prj prj/Arduino Schreibtisch" @@ -17,8 +17,9 @@ read -r -p "Are you sure? [y/N] " response case "$response" in [yY][eE][sS]|[yY]) for folder in $BASE_FOLDERS; do - rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/$folder $HOME + rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/local/$folder $HOME done + rm -rf $HOME/data; ln -s /usr/data/$USER/data data for folder in $VIP_FOLDERS; do rm -rf $HOME/`basename $folder`; ln -s /usr/data/$USER/data/$folder $HOME done