Plasma Installer Wiki
General purpose GUI installer for Linux controlled via bash script
Brought to you by:
krisjacewicz
This page documents the format that Plasma Installer will recognize when embedded in a bash script as a code for controling the UI aspects.
All of the in-bash format will be visible to the bash interpreter as comment, but will be parsed by the Plasma Installer and interpreted as UI control commands. General formatting rules:
#Plasma." (dot included)For example, to set 1st level (master) and 2nd level (slave) text in the footer, place this in your bash script:
#!/bin/sh
(...)
export USERNAME=$(whoami)
#Plasma.Footer1.Caption=Performing installation as $USERNAME
#Plasma.Footer2.Caption=Some_text_you_want_in_the_slave_footer
(...)
notice that you can use bash variables in the properties