mirror of
https://codeberg.org/knightsub9/lxcafe.git
synced 2026-07-19 19:30:16 +02:00
add /post_installation_script/bundles/ and /post_installation_script/bundles/template.sh and add section and example for bundles in /post_installation_script/Nachinstallationsarbeiten_LC_Esslingen.sh and make usage of "bundles" possible (for modularity)
This commit is contained in:
Executable
+20
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
# <short description here>
|
||||
# A shellscript meant to be used as subscript of `/post_installation_script/Nachinstallationsarbeiten_LC_Esslingen.sh`.
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||
source "$SCRIPT_DIR/common.sh"
|
||||
|
||||
# please seperate stuff that doesn't belong together and maybe put short descriptions before those blocks (as comments) like in the following example:
|
||||
# # Steam and Steam-related packages
|
||||
# echo '### Steam ###'
|
||||
# if question_answered_with_yes " ### Installiere Steam? ###"; then
|
||||
# echo "### Steam ###"
|
||||
# sudo apt install steam-installer
|
||||
# # sudo flatpak install com.valvesoftware.Steam
|
||||
# if question_answered_with_yes " ### Installiere Steam-Geräte-Unterstützungspaket (z. B. für Steam-Controller)? ###"; then
|
||||
# echo "### Steam-Devices ###"
|
||||
# sudo apt install steam-devices
|
||||
# fi
|
||||
# fi
|
||||
# echo '### Ende Steam ###'
|
||||
Reference in New Issue
Block a user