package_selections/**: rename post-install to post_install bc bash was unhappy about it
parent
3035bd4504
commit
8f2a786826
|
@ -6,6 +6,6 @@ DESCRIPTION="No audio"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "audio/none" >> /tmp/stage-2-choices
|
echo "audio/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Pipewire with GUI settings (Pavucontrol)"
|
||||||
|
|
||||||
PACKAGES="pipewire pavucontrol"
|
PACKAGES="pipewire pavucontrol"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "audio/pipewire" >> /tmp/stage-2-choices
|
echo "audio/pipewire" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Pipewire with text-based settings (pulsemixer)"
|
||||||
|
|
||||||
PACKAGES="pipewire pulsemixer"
|
PACKAGES="pipewire pulsemixer"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "audio/pipewire-slim" >> /tmp/stage-2-choices
|
echo "audio/pipewire-slim" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,6 @@ DESCRIPTION="BodgeMaster’s IceWM setup (recommended)"
|
||||||
# TODO
|
# TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "desktop/icewm-fancy" >> /tmp/stage-2-choices
|
echo "desktop/icewm-fancy" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,6 @@ DESCRIPTION="Lighter IceWM setup"
|
||||||
# TODO
|
# TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "desktop/icewm-light" >> /tmp/stage-2-choices
|
echo "desktop/icewm-light" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="No desktop - for advanced users that want to set things up themselv
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "desktop/none" >> /tmp/stage-2-choices
|
echo "desktop/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,6 @@ DESCRIPTION="OpenBox window manager (even more lightweight???)"
|
||||||
# TODO also add xclock
|
# TODO also add xclock
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "desktop/openbox" >> /tmp/stage-2-choices
|
echo "desktop/openbox" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ DESCRIPTION="All of the above"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
# TODO: configure desktop backgounds if using IceWM
|
# TODO: configure desktop backgounds if using IceWM
|
||||||
echo "extras/all" >> /tmp/stage-2-choices
|
echo "extras/all" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ DESCRIPTION="All of the above except Minecraft"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
# TODO: configure desktop backgounds if using IceWM
|
# TODO: configure desktop backgounds if using IceWM
|
||||||
echo "extras/all-no-minecraft" >> /tmp/stage-2-choices
|
echo "extras/all-no-minecraft" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ DESCRIPTION="Add some desktop backgrounds and randomly choose one on login"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
# TODO: configure
|
# TODO: configure
|
||||||
echo "extras/desktop-backgrounds" >> /tmp/stage-2-choices
|
echo "extras/desktop-backgrounds" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@ DESCRIPTION="Prism Launcher for Minecraft"
|
||||||
#TODO: Java stuff
|
#TODO: Java stuff
|
||||||
PACKAGES="PrismLauncher"
|
PACKAGES="PrismLauncher"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "extras/minecraft" >> /tmp/stage-2-choices
|
echo "extras/minecraft" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,6 @@ DESCRIPTION="??? (Minesweeper)"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "extras/minesweeper" >> /tmp/stage-2-choices
|
echo "extras/minesweeper" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="None"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "extras/none" >> /tmp/stage-2-choices
|
echo "extras/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,6 @@ DESCRIPTION="nSnake"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES="nSnake"
|
PACKAGES="nSnake"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "extras/snake" >> /tmp/stage-2-choices
|
echo "extras/snake" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="No"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "multimedia/none" >> /tmp/stage-2-choices
|
echo "multimedia/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@ DESCRIPTION="Install VLC"
|
||||||
#TODO: fluidsynth MIDI stuff
|
#TODO: fluidsynth MIDI stuff
|
||||||
PACKAGES="vlc"
|
PACKAGES="vlc"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "multimedia/vlc" >> /tmp/stage-2-choices
|
echo "multimedia/vlc" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="Don’t install."
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "nvidia/none" >> /tmp/stage-2-choices
|
echo "nvidia/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ DESCRIPTION="Latest Nvidia driver, supports GTX ??? series and up"
|
||||||
#TODO: optimus support?
|
#TODO: optimus support?
|
||||||
PACKAGES="nvidia"
|
PACKAGES="nvidia"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
#TODO: nvidia modeset kernel parameter?
|
#TODO: nvidia modeset kernel parameter?
|
||||||
echo "nvidia/nvidia" >> /tmp/stage-2-choices
|
echo "nvidia/nvidia" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ DESCRIPTION="Legacy Nvidia driver, version 390, supports GTX ??? series"
|
||||||
#TODO: Optimus support?
|
#TODO: Optimus support?
|
||||||
PACKAGES="nvidia390"
|
PACKAGES="nvidia390"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
#TODO: nvidia modeset kernel parameter?
|
#TODO: nvidia modeset kernel parameter?
|
||||||
echo "nvidia/nvidia390" >> /tmp/stage-2-choices
|
echo "nvidia/nvidia390" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ DESCRIPTION="Legacy Nvidia driver, version 470, supports GTX ??? series"
|
||||||
#TODO: optimus support?
|
#TODO: optimus support?
|
||||||
PACKAGES="nvidia470"
|
PACKAGES="nvidia470"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
#TODO: nvidia modeset kernel parameter?
|
#TODO: nvidia modeset kernel parameter?
|
||||||
echo "nvidia/nvidia470" >> /tmp/stage-2-choices
|
echo "nvidia/nvidia470" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ DESCRIPTION="Only add custom bashrc (advanced users)"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
#TODO: configure things
|
#TODO: configure things
|
||||||
|
|
||||||
echo "pre-configure/bashrc" >> /tmp/stage-2-choices
|
echo "pre-configure/bashrc" >> /tmp/stage-2-choices
|
||||||
|
|
|
@ -10,7 +10,7 @@ DESCRIPTION="Auto-start GUI session on login and add custom bashrc (recommended)
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
#TODO: configure things
|
#TODO: configure things
|
||||||
|
|
||||||
echo "pre-configure/gui-and-bashrc" >> /tmp/stage-2-choices
|
echo "pre-configure/gui-and-bashrc" >> /tmp/stage-2-choices
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="No (advanced users)"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "pre-configure/none" >> /tmp/stage-2-choices
|
echo "pre-configure/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,6 @@ DESCRIPTION="Add tray icon for network"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "systray/network" >> /tmp/stage-2-choices
|
echo "systray/network" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,6 @@ DESCRIPTION="Add tray icon for network and audio"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "systray/network-and-audio" >> /tmp/stage-2-choices
|
echo "systray/network-and-audio" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="Don’t install additional tray icons"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "systray/none" >> /tmp/stage-2-choices
|
echo "systray/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="LXDE Terminal (recommended)"
|
||||||
|
|
||||||
PACKAGES="lxterminal"
|
PACKAGES="lxterminal"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "terminal/lxterminal" >> /tmp/stage-2-choices
|
echo "terminal/lxterminal" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="None (advanced users only)"
|
||||||
|
|
||||||
PACKAGES="none"
|
PACKAGES="none"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "terminal/none" >> /tmp/stage-2-choices
|
echo "terminal/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Xterm"
|
||||||
|
|
||||||
PACKAGES="xterm"
|
PACKAGES="xterm"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "terminal/xterm" >> /tmp/stage-2-choices
|
echo "terminal/xterm" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,6 @@ DESCRIPTION="Fully featured (list of things) (recommended)"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "utilities/desktop-integrated-guisysmon" >> /tmp/stage-2-choices
|
echo "utilities/desktop-integrated-guisysmon" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,6 @@ DESCRIPTION="Fully featured (list of things with htop)"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "utilities/desktop-integrated-htop" >> /tmp/stage-2-choices
|
echo "utilities/desktop-integrated-htop" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="None"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "utilities/none" >> /tmp/stage-2-choices
|
echo "utilities/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,6 @@ DESCRIPTION="Smaller set of desktop utilities (XFE + ???)"
|
||||||
#TODO
|
#TODO
|
||||||
PACKAGES="xfe"
|
PACKAGES="xfe"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "utilities/xfe-guisysmon" >> /tmp/stage-2-choices
|
echo "utilities/xfe-guisysmon" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Smaller set of desktop utilities (XFE + Htop)"
|
||||||
|
|
||||||
PACKAGES="xfe htop"
|
PACKAGES="xfe htop"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "utilities/xfe-htop" >> /tmp/stage-2-choices
|
echo "utilities/xfe-htop" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="Install ELinks (terminal-based browser)"
|
||||||
|
|
||||||
PACKAGES="elinks"
|
PACKAGES="elinks"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "web/elinks" >> /tmp/stage-2-choices
|
echo "web/elinks" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Join the dark side with Chromium (Consider Firefox... You can still
|
||||||
|
|
||||||
PACKAGES="chromium"
|
PACKAGES="chromium"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "web/evil" >> /tmp/stage-2-choices
|
echo "web/evil" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Install Firefox (recommended)"
|
||||||
|
|
||||||
PACKAGES="firefox"
|
PACKAGES="firefox"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "web/firefox" >> /tmp/stage-2-choices
|
echo "web/firefox" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ DESCRIPTION="Install Firefox - Extended Support Release (ESR)"
|
||||||
|
|
||||||
PACKAGES="firefox-esr"
|
PACKAGES="firefox-esr"
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "web/firefox-esr" >> /tmp/stage-2-choices
|
echo "web/firefox-esr" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,6 @@ DESCRIPTION="No web browser"
|
||||||
|
|
||||||
PACKAGES=""
|
PACKAGES=""
|
||||||
|
|
||||||
function post-install {
|
function post_install {
|
||||||
echo "web/none" >> /tmp/stage-2-choices
|
echo "web/none" >> /tmp/stage-2-choices
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue