OTS ‐ Installing apps - Mistium/Origin-OS GitHub Wiki
App Management Commands Documentation
app help
This command brings up the help menu, providing information about various app
commands.
Example:
app help
# Displays the help menu with information about app commands
app install [name]
This command installs an app from the Mistium Apps repository.
Example:
app install notepad
# Installs the "notepad" app from the Mistium Apps repository
app install "music player"
# Installs the "music player" app from the Mistium Apps repository
app uninstall [name]
This command deletes an app from your applications folder.
Example:
app uninstall notepad
# Uninstalls the "notepad" app from your applications folder
app uninstall "music player"
# Uninstalls the "music player" app from your applications folder
app stats
This command returns the statistics for all installed store apps.
Example:
app stats
# Displays statistics for all installed store apps
Practical Examples
Bringing Up the Help Menu
To display the help menu:
app help
Installing an App
To install a specific app, for example, "notepad":
app install notepad
To install an app with a multi-word name, for example, "music player":
app install "music player"
Uninstalling an App
To uninstall a specific app, for example, "notepad":
app uninstall notepad
To uninstall an app with a multi-word name, for example, "music player":
app uninstall "music player"
Viewing App Statistics
To view statistics for all installed store apps:
app stats
Advanced Tips
-
Automating Installations: You can create a script to install multiple apps in sequence. For example, to install "notepad" and "music player":
app install notepad app install "music player"