Horns development#3
Open
aadashti wants to merge 20 commits into
Open
Conversation
new file: Cargo.toml new file: example.json modified: rhino-deploy new file: src/main.rs new file: src/modules/install.rs new file: src/todos.rs
renamed: example.json -> src/example.json modified: src/modules/install.rs new file: src/modules/script.rs modified: src/todos.rs
modified: src/example.json modified: src/modules/install.rs modified: src/modules/script.rs
modified: src/modules/script.rs
modified: src/modules/install.rs modified: src/modules/script.rs
modified: Cargo.toml modified: src/example.json modified: src/main.rs
modified: src/modules/script.rs
modified: src/modules/install.rs modified: src/todos.rs
ajstrongdev
requested changes
Aug 2, 2025
ajstrongdev
left a comment
Member
There was a problem hiding this comment.
With so much discussed on Discord I decided to post the full recap on our open ticket on our issue tracker.
rhino-linux/tracker#20 (comment)
This pull request is going to need serious reworking to meet the full refined project scope.
Author
@ajstrongdev Thank you for providing the recap; it has been reviewed. Edit: Quote reply included. |
modified: Cargo.toml new file: src/args/json_to_array.rs new file: src/args/mod.rs new file: src/args/terminal.rs modified: src/main.rs modified: src/modules/install.rs new file: src/restore/check.rs new file: src/restore/restore_file.rs new file: src/restore/session.rs
modified: src/args/mod.rs modified: src/main.rs modified: src/restore/check.rs new file: src/restore/mod.rs modified: src/restore/restore_file.rs modified: src/restore/session.rs
modified: src/restore/restore_file.rs modified: src/restore/session.rs
deleted: configs/2025-08-09-23-26-07-github.qkg1.top_aadashti_test_directory modified: src/args/mod.rs new file: src/args/pm/flatpak.rs new file: src/args/pm/mod.rs deleted: src/modules/install.rs deleted: src/modules/script.rs modified: src/restore/session.rs
modified: Cargo.toml new file: src/args/Packages.toml new file: src/args/json_and_config.rs modified: src/args/json_to_array.rs modified: src/args/mod.rs new file: src/args/packageConfig.rs deleted: src/args/pm/flatpak.rs deleted: src/args/pm/mod.rs new file: src/configs/2025-11-06-01-48-57-github.qkg1.top_aadashti_test_directory new file: src/configs/2025-11-06-01-50-31-github.qkg1.top_aadashti_test_directory new file: src/configs/2025-11-06-01-54-40-github.qkg1.top_aadashti_test_directory new file: src/configs/2025-11-06-01-56-04-github.qkg1.top_aadashti_test_directory deleted: src/example.json modified: src/restore/check.rs modified: src/restore/restore_file.rs modified: src/restore/session.rs
…rectory deleted: src/configs/2025-11-06-01-50-31-github.qkg1.top_aadashti_test_directory deleted: src/configs/2025-11-06-01-54-40-github.qkg1.top_aadashti_test_directory deleted: src/configs/2025-11-06-01-56-04-github.qkg1.top_aadashti_test_directory
new file: src/configs/2025-11-06-02-04-36-github.qkg1.top_aadashti_test_directory
deleted: src/args/packageConfig.rs new file: src/configs/2025-11-06-02-06-15-github.qkg1.top_aadashti_test_directory
…rectory deleted: src/configs/2025-11-06-02-06-15-github.qkg1.top_aadashti_test_directory
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.
Greetings,
This pull request is for
Horns' developement, a script that will allow for you to import your Rhino Linux installation from a configuration script.To test the project, you can run:
Tip
An example JSON file is included at src/
A Brief explanation regarding this program:
main.rsto check the command and guide the user if the command was wrongtodo.rsreads the JSON configurations part by part. Each part of this JSON file is a process that will be done. This file, later, will give these parts to the particular module based on the ID alongside passing some information.Tip
Each process has the following parts:
IDdetermines the current process between installing packages and running scripts.title, a brief explanation can be provided for each.detailholds the data. These data are either the name of packages or a script. (EDIT: P.S. for packages, the first item is dedicated to select the package manager: [packagemanager, package1, package2, ..., package n])askis a boolean. If true, the code asks users' confirmation and vice versa.install.rscallsrhino-pkgto install multiple packages one by one.script.rsruns entry scripts.