From 24007dc15cef5f934c4d96db3debdbfc90e3a549 Mon Sep 17 00:00:00 2001 From: Jeevitha Kannan K S Date: Tue, 15 Oct 2024 23:25:32 +0530 Subject: [PATCH 1/3] Use args --- start.sh | 2 +- startdev.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index 3c412fb6..71e87583 100755 --- a/start.sh +++ b/start.sh @@ -43,7 +43,7 @@ check $? "Downloading linutil" chmod +x "$temp_file" check $? "Making linutil executable" -"$temp_file" +"$temp_file" "$@" check $? "Executing linutil" rm -f "$temp_file" diff --git a/startdev.sh b/startdev.sh index 5aad12ad..8e27bbf0 100755 --- a/startdev.sh +++ b/startdev.sh @@ -69,7 +69,7 @@ check $? "Downloading linutil" chmod +x "$TMPFILE" check $? "Making linutil executable" -"$TMPFILE" +"$TMPFILE" "$@" check $? "Executing linutil" rm -f "$TMPFILE" From 8a60ec4f5c58b9648e1b8c84ea62bf17929571e0 Mon Sep 17 00:00:00 2001 From: Jeevitha Kannan K S Date: Tue, 15 Oct 2024 23:32:44 +0530 Subject: [PATCH 2/3] Include details about arguments --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index f8aa0ea3..c1e2d133 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,26 @@ curl -fsSL https://christitus.com/linux | sh ```bash curl -fsSL https://christitus.com/linuxdev | sh ``` +
+ Usage of Arguments + +Linutil supports various command-line arguments to customize its behavior. Here are some common arguments you can use: + +- `-t, --theme ` : Set the theme to use in the application [default: default] [possible values: default, compatible]. +- `--override-validation` : Show all available options, disregarding compatibility checks (UNSAFE). +- `-h, --help` : Print help. + +For more detailed usage, run: + +```bash +curl -fsSL https://christitus.com/linux | sh -s -- --help +``` + +```bash +linutil --help +``` +
+ ## ⬇️ Installation Linutil is also available as a package in various repositories: From ed98bc335ab37d53d2351e678cf75c9d4491e9f0 Mon Sep 17 00:00:00 2001 From: JEEVITHA KANNAN K S Date: Thu, 31 Oct 2024 05:26:00 +0530 Subject: [PATCH 3/3] Update README.md Co-authored-by: Adam Perkowski --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1e2d133..c4f26ae5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ curl -fsSL https://christitus.com/linux | sh curl -fsSL https://christitus.com/linuxdev | sh ```
- Usage of Arguments + CLI arguments Linutil supports various command-line arguments to customize its behavior. Here are some common arguments you can use: