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