Add batch web app installation from TOML file#2139
Closed
YannickHerrero wants to merge 1 commit into
Closed
Conversation
Adds omarchy-webapp-batch-install command to install multiple web apps from a user-provided TOML configuration file. Changes: - New command: omarchy-webapp-batch-install - Accepts a TOML file path as argument or prompts interactively - Shows TOML format example in the prompt - Parses user-provided TOML file to extract web app definitions - Uses gum multi-select for interactive app selection - Installs selected apps using omarchy-webapp-install TOML file format: [[webapp]] name = "App Name" url = "https://app.example.com" icon = "https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/app.png" Usage: omarchy-webapp-batch-install ~/my-webapps.toml
Contributor
|
why? |
Author
This is useful when setting up Omarchy on multiple computers, you can install the same web apps without repeating the interactive process for each individual app. |
Contributor
|
You can also do that by properly saving your dotfiles, which you will have to do anyways if you want the same setup on multiple machines. Not sure what you are winning here. |
Member
|
That's for the suggestion, but I think you're better off just having a tailoring script that calls the web app installer multiple times. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
omarchy-webapp-batch-installcommand to install multiple web appsfrom a user-provided TOML configuration file.
Changes
omarchy-webapp-batch-installomarchy-webapp-installUsage
omarchy-webapp-batch-install ~/my-webapps.tomlTOML File Format