From e79dad663096a33ce21c22ca35322e7e23bccc48 Mon Sep 17 00:00:00 2001 From: <> Date: Tue, 8 Oct 2024 21:13:18 +0000 Subject: [PATCH] Deployed 01d571f with MkDocs version: 1.6.0 --- 404.html | 2 +- KnownIssues/index.html | 2 +- contribute/index.html | 1 - contributing/index.html | 1 + faq/index.html | 2 +- index.html | 2 +- roadmap/index.html | 2 +- search/search_index.json | 2 +- userguide/index.html | 2 +- 9 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 contribute/index.html create mode 100644 contributing/index.html diff --git a/404.html b/404.html index d451ca6b..03799bca 100644 --- a/404.html +++ b/404.html @@ -1 +1 @@ - Chris Titus LinUtil Official Documentation
Announcement: This documentation is still in progress.

404 - Not found

\ No newline at end of file + Chris Titus LinUtil Official Documentation
Announcement: This documentation is still in progress.

404 - Not found

\ No newline at end of file diff --git a/KnownIssues/index.html b/KnownIssues/index.html index 59ce027a..a48d4429 100644 --- a/KnownIssues/index.html +++ b/KnownIssues/index.html @@ -1 +1 @@ - Known Issues - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.
\ No newline at end of file + Known Issues - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.
\ No newline at end of file diff --git a/contribute/index.html b/contribute/index.html deleted file mode 100644 index 3ad90436..00000000 --- a/contribute/index.html +++ /dev/null @@ -1 +0,0 @@ - Contributing Guide - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.

How to Contribute?

Thank you for considering contributing to Linutil! We appreciate your effort in helping improve this project. To ensure that your contributions align with the goals and quality standards of Linutil, please follow these guidelines:

1. Install Rust:

Make sure you have Rust installed on your machine. You can install it by following the instructions at rust-lang.org.

2. Fork and Clone the repo

  1. Make a fork of the repo in GitHub
  2. Clone the fork bash git clone https://github.com/YOUR_USERNAME_HERE/linutil.git cd linutil

3. Make your changes

  • Edit the files you want to change: Make your changes to the relevant files.
  • Test your changes: Run cargo run to test your modifications in a local environment and ensure everything works as expected.

4. Understand the existing code

  • Have a clear reason: Don’t change the way things are done without a valid reason. If you propose an alteration, be prepared to explain why it’s necessary and how it improves the project.
  • Respect existing conventions: Changes should align with the existing code style, design patterns, and overall project philosophy. If you want to introduce a new way of doing things, justify it clearly.

5. Learn from Past Pull Requests (PRs)

  • Check merged PRs: Reviewing merged pull requests can give you an idea of what kind of contributions are accepted and how they are implemented.
  • Study rejected PRs: This is especially important as it helps you avoid making similar mistakes or proposing changes that have already been considered and declined.

6. Write Clean, Descriptive Commit Messages

  • Be descriptive: Your commit messages should clearly describe what the change does and why it was made.
  • Use the imperative mood: For example, "Add feature X" or "Fix bug in Y", rather than "Added feature X" or "Fixed bug in Y".
  • Keep commits clean: Avoid committing a change and then immediately following it with a fix for that change. Instead, amend your commit or squash it if needed.

7. Keep Your Pull Requests (PRs) Small and Focused

  • Make small, targeted PRs: Focus on one feature or fix per pull request. This makes it easier to review and increases the likelihood of acceptance.
  • Avoid combining unrelated changes: PRs that tackle multiple unrelated issues are harder to review and might be rejected because of a single problem.

8. Code Review and Feedback

  • Expect feedback: PRs will undergo code review. Be open to feedback and willing to make adjustments as needed.
  • Participate in reviews: If you feel comfortable, review other contributors' PRs as well. Peer review is a great way to learn and ensure high-quality contributions.

9. Contributing Is More Than Just Code

  • Test the tool: Running tests and providing feedback on how the tool works in different environments is a valuable contribution.
  • Write well-formed issues: Clearly describe bugs or problems you encounter, providing as much detail as possible, including steps to reproduce the issue.
  • Propose reasonable feature requests: When suggesting new features, ensure they fit within the scope, style, and design of the project. Provide clear reasoning and use cases.

10. Documentation

  • Update the documentation: If your change affects the functionality, please update the relevant documentation files to reflect this.

11. License

  • Agree to the license: By contributing to Linutil, you agree that your contributions will be licensed under the project's MIT license.

We appreciate your contributions and look forward to collaborating with you to make Linutil better!

\ No newline at end of file diff --git a/contributing/index.html b/contributing/index.html new file mode 100644 index 00000000..a38af0d2 --- /dev/null +++ b/contributing/index.html @@ -0,0 +1 @@ + Contributing Guide - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.

Contributing Guide

\n\n# Contributing Guidelines for Linutil

Thank you for considering contributing to Linutil! We appreciate your effort in helping improve this project. To ensure that your contributions align with the goals and quality standards of Linutil, please follow these guidelines:

1. Install Rust:

Make sure you have Rust installed on your machine. You can install it by following the instructions at rust-lang.org.

2. Fork and Clone the repo

  1. Make a fork of the repo in GitHub
  2. Clone the fork bash git clone https://github.com/YOUR_USERNAME_HERE/linutil.git cd linutil

3. Make your changes

  • Edit the files you want to change: Make your changes to the relevant files.
  • Test your changes: Run cargo run to test your modifications in a local environment and ensure everything works as expected.

4. Understand the existing code

  • Have a clear reason: Don’t change the way things are done without a valid reason. If you propose an alteration, be prepared to explain why it’s necessary and how it improves the project.
  • Respect existing conventions: Changes should align with the existing code style, design patterns, and overall project philosophy. If you want to introduce a new way of doing things, justify it clearly.

5. Learn from Past Pull Requests (PRs)

  • Check merged PRs: Reviewing merged pull requests can give you an idea of what kind of contributions are accepted and how they are implemented.
  • Study rejected PRs: This is especially important as it helps you avoid making similar mistakes or proposing changes that have already been considered and declined.

6. Write Clean, Descriptive Commit Messages

  • Be descriptive: Your commit messages should clearly describe what the change does and why it was made.
  • Use the imperative mood: For example, "Add feature X" or "Fix bug in Y", rather than "Added feature X" or "Fixed bug in Y".
  • Keep commits clean: Avoid committing a change and then immediately following it with a fix for that change. Instead, amend your commit or squash it if needed.

7. Keep Your Pull Requests (PRs) Small and Focused

  • Make small, targeted PRs: Focus on one feature or fix per pull request. This makes it easier to review and increases the likelihood of acceptance.
  • Avoid combining unrelated changes: PRs that tackle multiple unrelated issues are harder to review and might be rejected because of a single problem.

8. Understand and Test the Code You Write

  • Review your code: Before submitting your changes, take the time to review your code for readability, efficiency and performance. Consider how your changes affect the project.
  • Avoid using LLMs: Don't submit AI-generated code without reviewing and testing it first. Ensure that any code you submit is thoroughly understood and meets the project's standards.
  • Testing Requirements: Failure to conduct testing after multiple requests may result in the closure of your Pull Request.

9. Code Review and Feedback

  • Expect feedback: PRs will undergo code review. Be open to feedback and willing to make adjustments as needed.
  • Participate in reviews: If you feel comfortable, review other contributors' PRs as well. Peer review is a great way to learn and ensure high-quality contributions.

10. Contributing Is More Than Just Code

  • Test the tool: Running tests and providing feedback on how the tool works in different environments is a valuable contribution.
  • Write well-formed issues: Clearly describe bugs or problems you encounter, providing as much detail as possible, including steps to reproduce the issue.
  • Propose reasonable feature requests: When suggesting new features, ensure they fit within the scope, style, and design of the project. Provide clear reasoning and use cases.

11. Documentation

  • Update the documentation: If your change affects the functionality, please update the relevant documentation files to reflect this.

12. License

  • Agree to the license: By contributing to Linutil, you agree that your contributions will be licensed under the project's MIT license.

We appreciate your contributions and look forward to collaborating with you to make Linutil better!

\ No newline at end of file diff --git a/faq/index.html b/faq/index.html index a2082ba3..388d9a0a 100644 --- a/faq/index.html +++ b/faq/index.html @@ -1 +1 @@ - FAQ - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.

FAQ's

How do I uninstall LinUtil?

  • You do not have to uninstall LinUtil. As it is a script you run from your terminal it only loads into your RAM. This means as soon as you close LinUtil it will be deleted off your system.
\ No newline at end of file + FAQ - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.

FAQ's

How do I uninstall LinUtil?

  • You do not have to uninstall LinUtil. As it is a script you run from your terminal it only loads into your RAM. This means as soon as you close LinUtil it will be deleted off your system.
\ No newline at end of file diff --git a/index.html b/index.html index 6548d18b..e860f308 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - Chris Titus LinUtil Official Documentation
Skip to content
Announcement: This documentation is still in progress.

Welcome to the LinUtil Documentation!

Version GitHub Downloads (specific asset, all releases)

Crates.io Version linutil AUR Version linutil-bin AUR Version

Running the latest release of LinUtil

To get started, run the following command in your terminal:

Stable branch

curl -fsSL https://christitus.com/linux | sh
+ Chris Titus LinUtil Official Documentation      
Announcement: This documentation is still in progress.

Welcome to the LinUtil Documentation!

Version GitHub Downloads (specific asset, all releases)

Crates.io Version linutil AUR Version linutil-bin AUR Version

Running the latest release of LinUtil

To get started, run the following command in your terminal:

Stable branch

curl -fsSL https://christitus.com/linux | sh
 

Installation

LinUtil is also available as a package in various repositories:

Packaging status

Arch Linux LinUtil can be installed on [Arch Linux](https://archlinux.org) with three different [AUR](https://aur.archlinux.org) packages: - `linutil` - Stable release compiled from source - `linutil-bin` - Stable release pre-compiled - `linutil-git` - Compiled from the last commit (not recommended) by running:
git clone https://aur.archlinux.org/<package>.git
 cd linutil
 makepkg -si
diff --git a/roadmap/index.html b/roadmap/index.html
index 79ab7b93..800277bd 100644
--- a/roadmap/index.html
+++ b/roadmap/index.html
@@ -1 +1 @@
- Roadmap - Chris Titus LinUtil Official Documentation      
Announcement: This documentation is still in progress.

Roadmap

Vision

  • To simplify linux tasks for all users for all distributions; Easily, efficiently, and effortlessly.

Goals

  • Focus on tasks that take time in Linux and automate them. (Example: Removing a user, adding a user, etc. - but mostly BASH scripts with POSIX compliance.)
  • Remove Binary linutil from being tracked in git and make it a github action.
  • Document every function and feature of linutil. (Preview panel description addition)
  • Create a discord server for linutil and invite the community.
  • Power Optimizations for Laptops

Milestones

Q3 2024

  • Finish the foundation of the project in CLI mode.
  • DENY ALL GUI Pull Requests while CLI and foundation is being established.

Q4 2024

  • GUI Brainstorming and Planning
  • GUI Implementation towards the end of Q4

Community Feedback

  • Encourage community input and suggestions for future development.
\ No newline at end of file + Roadmap - Chris Titus LinUtil Official Documentation
Announcement: This documentation is still in progress.

Roadmap

Vision

  • To simplify linux tasks for all users for all distributions; Easily, efficiently, and effortlessly.

Goals

  • Focus on tasks that take time in Linux and automate them. (Example: Removing a user, adding a user, etc. - but mostly BASH scripts with POSIX compliance.)
  • Remove Binary linutil from being tracked in git and make it a github action.
  • Document every function and feature of linutil. (Preview panel description addition)
  • Create a discord server for linutil and invite the community.
  • Power Optimizations for Laptops

Milestones

Q3 2024

  • Finish the foundation of the project in CLI mode.
  • DENY ALL GUI Pull Requests while CLI and foundation is being established.

Q4 2024

  • GUI Brainstorming and Planning
  • GUI Implementation towards the end of Q4

Community Feedback

  • Encourage community input and suggestions for future development.
\ No newline at end of file diff --git a/search/search_index.json b/search/search_index.json index f11b48b1..300d22d1 100644 --- a/search/search_index.json +++ b/search/search_index.json @@ -1 +1 @@ -{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Welcome to the LinUtil Documentation!","text":""},{"location":"#running-the-latest-release-of-linutil","title":"Running the latest release of LinUtil","text":"

To get started, run the following command in your terminal:

"},{"location":"#stable-branch","title":"Stable branch","text":""},{"location":"#curl-fssl-httpschristituscomlinux-sh","title":"
curl -fsSL https://christitus.com/linux | sh\n
","text":""},{"location":"#installation","title":"Installation","text":"

LinUtil is also available as a package in various repositories:

Arch Linux LinUtil can be installed on [Arch Linux](https://archlinux.org) with three different [AUR](https://aur.archlinux.org) packages: - `linutil` - Stable release compiled from source - `linutil-bin` - Stable release pre-compiled - `linutil-git` - Compiled from the last commit (not recommended) by running:
git clone https://aur.archlinux.org/<package>.git\ncd linutil\nmakepkg -si\n
Replace `` with your preferred package. If you use [yay](https://github.com/Jguer/yay), [paru](https://github.com/Morganamilo/paru) or any other [AUR Helper](https://wiki.archlinux.org/title/AUR_helpers), it's even simpler:
paru -S linutil\n
Replace `paru` with your preferred helper and `linutil` with your preferred package. Cargo LinUtil can be installed via [Cargo](https://doc.rust-lang.org/cargo) with:
cargo install linutil\n
Note that crates installed using `cargo install` require manual updating with `cargo install --force` (update functionality is [included in LinUtil](https://christitustech.github.io/linutil/userguide/#applications-setup))

After you've ran the command, you should see a GUI on your screen; It will look something like this:

Info

LinUtil is updated weekly as of the time of writing. Consequently, features and functionalities may evolve, and the documentation may not always reflect the most current images or information.

"},{"location":"KnownIssues/","title":"Known Issues","text":"
  • Known Issues
"},{"location":"contribute/","title":"How to Contribute?","text":"

Thank you for considering contributing to Linutil! We appreciate your effort in helping improve this project. To ensure that your contributions align with the goals and quality standards of Linutil, please follow these guidelines:

"},{"location":"contribute/#1-install-rust","title":"1. Install Rust:","text":"

Make sure you have Rust installed on your machine. You can install it by following the instructions at rust-lang.org.

"},{"location":"contribute/#2-fork-and-clone-the-repo","title":"2. Fork and Clone the repo","text":"
  1. Make a fork of the repo in GitHub
  2. Clone the fork bash git clone https://github.com/YOUR_USERNAME_HERE/linutil.git cd linutil
"},{"location":"contribute/#3-make-your-changes","title":"3. Make your changes","text":"
  • Edit the files you want to change: Make your changes to the relevant files.
  • Test your changes: Run cargo run to test your modifications in a local environment and ensure everything works as expected.
"},{"location":"contribute/#4-understand-the-existing-code","title":"4. Understand the existing code","text":"
  • Have a clear reason: Don\u2019t change the way things are done without a valid reason. If you propose an alteration, be prepared to explain why it\u2019s necessary and how it improves the project.
  • Respect existing conventions: Changes should align with the existing code style, design patterns, and overall project philosophy. If you want to introduce a new way of doing things, justify it clearly.
"},{"location":"contribute/#5-learn-from-past-pull-requests-prs","title":"5. Learn from Past Pull Requests (PRs)","text":"
  • Check merged PRs: Reviewing merged pull requests can give you an idea of what kind of contributions are accepted and how they are implemented.
  • Study rejected PRs: This is especially important as it helps you avoid making similar mistakes or proposing changes that have already been considered and declined.
"},{"location":"contribute/#6-write-clean-descriptive-commit-messages","title":"6. Write Clean, Descriptive Commit Messages","text":"
  • Be descriptive: Your commit messages should clearly describe what the change does and why it was made.
  • Use the imperative mood: For example, \"Add feature X\" or \"Fix bug in Y\", rather than \"Added feature X\" or \"Fixed bug in Y\".
  • Keep commits clean: Avoid committing a change and then immediately following it with a fix for that change. Instead, amend your commit or squash it if needed.
"},{"location":"contribute/#7-keep-your-pull-requests-prs-small-and-focused","title":"7. Keep Your Pull Requests (PRs) Small and Focused","text":"
  • Make small, targeted PRs: Focus on one feature or fix per pull request. This makes it easier to review and increases the likelihood of acceptance.
  • Avoid combining unrelated changes: PRs that tackle multiple unrelated issues are harder to review and might be rejected because of a single problem.
"},{"location":"contribute/#8-code-review-and-feedback","title":"8. Code Review and Feedback","text":"
  • Expect feedback: PRs will undergo code review. Be open to feedback and willing to make adjustments as needed.
  • Participate in reviews: If you feel comfortable, review other contributors' PRs as well. Peer review is a great way to learn and ensure high-quality contributions.
"},{"location":"contribute/#9-contributing-is-more-than-just-code","title":"9. Contributing Is More Than Just Code","text":"
  • Test the tool: Running tests and providing feedback on how the tool works in different environments is a valuable contribution.
  • Write well-formed issues: Clearly describe bugs or problems you encounter, providing as much detail as possible, including steps to reproduce the issue.
  • Propose reasonable feature requests: When suggesting new features, ensure they fit within the scope, style, and design of the project. Provide clear reasoning and use cases.
"},{"location":"contribute/#10-documentation","title":"10. Documentation","text":"
  • Update the documentation: If your change affects the functionality, please update the relevant documentation files to reflect this.
"},{"location":"contribute/#11-license","title":"11. License","text":"
  • Agree to the license: By contributing to Linutil, you agree that your contributions will be licensed under the project's MIT license.

We appreciate your contributions and look forward to collaborating with you to make Linutil better!

"},{"location":"faq/","title":"FAQ's","text":""},{"location":"faq/#how-do-i-uninstall-linutil","title":"How do I uninstall LinUtil?","text":"
  • You do not have to uninstall LinUtil. As it is a script you run from your terminal it only loads into your RAM. This means as soon as you close LinUtil it will be deleted off your system.
"},{"location":"roadmap/","title":"Roadmap","text":""},{"location":"roadmap/#vision","title":"Vision","text":"
  • To simplify linux tasks for all users for all distributions; Easily, efficiently, and effortlessly.
"},{"location":"roadmap/#goals","title":"Goals","text":"
  • Focus on tasks that take time in Linux and automate them. (Example: Removing a user, adding a user, etc. - but mostly BASH scripts with POSIX compliance.)
  • Remove Binary linutil from being tracked in git and make it a github action.
  • Document every function and feature of linutil. (Preview panel description addition)
  • Create a discord server for linutil and invite the community.
  • Power Optimizations for Laptops
"},{"location":"roadmap/#milestones","title":"Milestones","text":""},{"location":"roadmap/#q3-2024","title":"Q3 2024","text":"
  • Finish the foundation of the project in CLI mode.
  • DENY ALL GUI Pull Requests while CLI and foundation is being established.
"},{"location":"roadmap/#q4-2024","title":"Q4 2024","text":"
  • GUI Brainstorming and Planning
  • GUI Implementation towards the end of Q4
"},{"location":"roadmap/#community-feedback","title":"Community Feedback","text":"
  • Encourage community input and suggestions for future development.
"},{"location":"userguide/","title":"Walkthrough","text":""},{"location":"userguide/#system-setup","title":"System Setup","text":"
  • System Update: Starts a system-wide update.
  • Compile Setup: Installs tools and dependencies for compiling software.
  • Gaming Setup: Configures Steam, Lutris, etc.
  • Global Theming: Sets up and manages global themes.
  • Remove Snaps: Removes snap packages.
  • TTY Fonts: This Script will set the default TTY font to Terminus size 32 Bold
"},{"location":"userguide/#arch-setup","title":"Arch Setup","text":"
  • Paru Setup: Installs the Paru AUR helper.
  • Yay Setup: Installs the Yay AUR helper.
  • Server Setup: Installs Arch Linux.
"},{"location":"userguide/#fedora-setup","title":"Fedora Setup","text":"
  • RPM Fusion Setup: Adds RPM Fusion free and nonfree repositories.
  • Multimedia Codecs: Installs multimedia codecs and updates multimedia-related packages. Requires RPM Fusion repositories to be set up first.
  • NVIDIA Proprietary Driver Setup: Installs proprietary NVIDIA drivers for GPUs from 2014 or later.
  • Virtualization Setup: Installs virtualization tools.
  • Configure DNF: Optimizes DNF for better speeds.
"},{"location":"userguide/#applications-setup","title":"Applications Setup","text":"
  • Flathub: Installs Flatpak and Flathub.
  • Alacritty Setup: Installs and configures Alacritty for you.
  • DwmTitus Setup: Sets up the Dwm window manager.
  • Kitty Setup: Installs and configures Kitty for you.
  • Rofi Setup: Installs the Rofi application/script launcher.
  • Zsh Setup: Installs and configures Zsh for you.
  • Fastfetch Setup: Installs and configures Fastfetch.
  • Linutil Updater: Updates the Linutil AUR / Crates.io Package.
  • Linutil Installer: Installs Linutil via Crates.io or AUR.
  • Office Suite Setup: Installs various office suites and PDF viewers (OnlyOffice, LibreOffice, WPS Office, FreeOffice, Evince, Okular, PDF Studio Viewer, PDF Studio).
"},{"location":"userguide/#developer-tools","title":"Developer Tools","text":"
  • Meld Setup: Installs Meld, a visual diff and merge tool.
  • Ngrok Setup: Installs Ngrok, a tool for creating secure tunnels to localhost.
  • Neovim Setup: Installs and configures Neovim, a Vim-based text editor.
  • VS Code Setup: Installs Visual Studio Code, a popular text editor.
  • Sublime Setup: Installs Sublime Text, a nice text editor for code and markup.
  • VS Codium Setup: Installs VS Codium, an open-source build of VS Code.
  • GitHub Desktop Setup: Installs GitHub Desktop, a GUI for Git and GitHub.
"},{"location":"userguide/#security-features","title":"Security Features","text":"
  • Firewall Baselines: Sets up firewall rules.
"},{"location":"userguide/#utilities","title":"Utilities","text":"
  • Wifi Control: Controls WiFi settings.
  • Numlock Control: Sets up Numlock on boot.
  • Bluetooth Control: Controls Bluetooth settings.
"},{"location":"userguide/#monitor-control","title":"Monitor control","text":"
  • Reset Scaling: Resets monitor scaling to native resolution.
  • Scale Monitor: Scales smaller monitors to the highest resolution of a bigger monitor.
  • Enable Monitor: Enables a selected monitor.
  • Disable Monitor: Disables a selected monitor.
  • Set Brightness: Adjusts brightness for a selected monitor.
  • Set Resolutions: Sets resolutions for connected monitors.
  • Change Orientation: Changes the orientation of a selected monitor.
  • Extend Displays: Extends displays to the right.
  • Duplicate Displays: Duplicates displays.
  • Manage Arrangement: Manages the arrangement of multiple monitors.
  • Set Primary Monitor: Sets a selected monitor as the main display.
  • Auto Detect Displays: Sets common resolution.
"},{"location":"userguide/#user-account-manager","title":"User Account Manager","text":"
  • Add User: Creates a new user account.
  • Delete User: Deletes an existing user account.
  • Add to Group: Adds a user to specified groups.
  • Remove from Group: Removes a user from specified groups.
  • Change Password: Changes the password for a user account.
"}]} \ No newline at end of file +{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Welcome to the LinUtil Documentation!","text":""},{"location":"#running-the-latest-release-of-linutil","title":"Running the latest release of LinUtil","text":"

To get started, run the following command in your terminal:

"},{"location":"#stable-branch","title":"Stable branch","text":""},{"location":"#curl-fssl-httpschristituscomlinux-sh","title":"
curl -fsSL https://christitus.com/linux | sh\n
","text":""},{"location":"#installation","title":"Installation","text":"

LinUtil is also available as a package in various repositories:

Arch Linux LinUtil can be installed on [Arch Linux](https://archlinux.org) with three different [AUR](https://aur.archlinux.org) packages: - `linutil` - Stable release compiled from source - `linutil-bin` - Stable release pre-compiled - `linutil-git` - Compiled from the last commit (not recommended) by running:
git clone https://aur.archlinux.org/<package>.git\ncd linutil\nmakepkg -si\n
Replace `` with your preferred package. If you use [yay](https://github.com/Jguer/yay), [paru](https://github.com/Morganamilo/paru) or any other [AUR Helper](https://wiki.archlinux.org/title/AUR_helpers), it's even simpler:
paru -S linutil\n
Replace `paru` with your preferred helper and `linutil` with your preferred package. Cargo LinUtil can be installed via [Cargo](https://doc.rust-lang.org/cargo) with:
cargo install linutil\n
Note that crates installed using `cargo install` require manual updating with `cargo install --force` (update functionality is [included in LinUtil](https://christitustech.github.io/linutil/userguide/#applications-setup))

After you've ran the command, you should see a GUI on your screen; It will look something like this:

Info

LinUtil is updated weekly as of the time of writing. Consequently, features and functionalities may evolve, and the documentation may not always reflect the most current images or information.

"},{"location":"KnownIssues/","title":"Known Issues","text":"
  • Known Issues
"},{"location":"contributing/","title":"Contributing Guide","text":"

\\n\\n# Contributing Guidelines for Linutil

Thank you for considering contributing to Linutil! We appreciate your effort in helping improve this project. To ensure that your contributions align with the goals and quality standards of Linutil, please follow these guidelines:

"},{"location":"contributing/#1-install-rust","title":"1. Install Rust:","text":"

Make sure you have Rust installed on your machine. You can install it by following the instructions at rust-lang.org.

"},{"location":"contributing/#2-fork-and-clone-the-repo","title":"2. Fork and Clone the repo","text":"
  1. Make a fork of the repo in GitHub
  2. Clone the fork bash git clone https://github.com/YOUR_USERNAME_HERE/linutil.git cd linutil
"},{"location":"contributing/#3-make-your-changes","title":"3. Make your changes","text":"
  • Edit the files you want to change: Make your changes to the relevant files.
  • Test your changes: Run cargo run to test your modifications in a local environment and ensure everything works as expected.
"},{"location":"contributing/#4-understand-the-existing-code","title":"4. Understand the existing code","text":"
  • Have a clear reason: Don\u2019t change the way things are done without a valid reason. If you propose an alteration, be prepared to explain why it\u2019s necessary and how it improves the project.
  • Respect existing conventions: Changes should align with the existing code style, design patterns, and overall project philosophy. If you want to introduce a new way of doing things, justify it clearly.
"},{"location":"contributing/#5-learn-from-past-pull-requests-prs","title":"5. Learn from Past Pull Requests (PRs)","text":"
  • Check merged PRs: Reviewing merged pull requests can give you an idea of what kind of contributions are accepted and how they are implemented.
  • Study rejected PRs: This is especially important as it helps you avoid making similar mistakes or proposing changes that have already been considered and declined.
"},{"location":"contributing/#6-write-clean-descriptive-commit-messages","title":"6. Write Clean, Descriptive Commit Messages","text":"
  • Be descriptive: Your commit messages should clearly describe what the change does and why it was made.
  • Use the imperative mood: For example, \"Add feature X\" or \"Fix bug in Y\", rather than \"Added feature X\" or \"Fixed bug in Y\".
  • Keep commits clean: Avoid committing a change and then immediately following it with a fix for that change. Instead, amend your commit or squash it if needed.
"},{"location":"contributing/#7-keep-your-pull-requests-prs-small-and-focused","title":"7. Keep Your Pull Requests (PRs) Small and Focused","text":"
  • Make small, targeted PRs: Focus on one feature or fix per pull request. This makes it easier to review and increases the likelihood of acceptance.
  • Avoid combining unrelated changes: PRs that tackle multiple unrelated issues are harder to review and might be rejected because of a single problem.
"},{"location":"contributing/#8-understand-and-test-the-code-you-write","title":"8. Understand and Test the Code You Write","text":"
  • Review your code: Before submitting your changes, take the time to review your code for readability, efficiency and performance. Consider how your changes affect the project.
  • Avoid using LLMs: Don't submit AI-generated code without reviewing and testing it first. Ensure that any code you submit is thoroughly understood and meets the project's standards.
  • Testing Requirements: Failure to conduct testing after multiple requests may result in the closure of your Pull Request.
"},{"location":"contributing/#9-code-review-and-feedback","title":"9. Code Review and Feedback","text":"
  • Expect feedback: PRs will undergo code review. Be open to feedback and willing to make adjustments as needed.
  • Participate in reviews: If you feel comfortable, review other contributors' PRs as well. Peer review is a great way to learn and ensure high-quality contributions.
"},{"location":"contributing/#10-contributing-is-more-than-just-code","title":"10. Contributing Is More Than Just Code","text":"
  • Test the tool: Running tests and providing feedback on how the tool works in different environments is a valuable contribution.
  • Write well-formed issues: Clearly describe bugs or problems you encounter, providing as much detail as possible, including steps to reproduce the issue.
  • Propose reasonable feature requests: When suggesting new features, ensure they fit within the scope, style, and design of the project. Provide clear reasoning and use cases.
"},{"location":"contributing/#11-documentation","title":"11. Documentation","text":"
  • Update the documentation: If your change affects the functionality, please update the relevant documentation files to reflect this.
"},{"location":"contributing/#12-license","title":"12. License","text":"
  • Agree to the license: By contributing to Linutil, you agree that your contributions will be licensed under the project's MIT license.

We appreciate your contributions and look forward to collaborating with you to make Linutil better!

"},{"location":"faq/","title":"FAQ's","text":""},{"location":"faq/#how-do-i-uninstall-linutil","title":"How do I uninstall LinUtil?","text":"
  • You do not have to uninstall LinUtil. As it is a script you run from your terminal it only loads into your RAM. This means as soon as you close LinUtil it will be deleted off your system.
"},{"location":"roadmap/","title":"Roadmap","text":""},{"location":"roadmap/#vision","title":"Vision","text":"
  • To simplify linux tasks for all users for all distributions; Easily, efficiently, and effortlessly.
"},{"location":"roadmap/#goals","title":"Goals","text":"
  • Focus on tasks that take time in Linux and automate them. (Example: Removing a user, adding a user, etc. - but mostly BASH scripts with POSIX compliance.)
  • Remove Binary linutil from being tracked in git and make it a github action.
  • Document every function and feature of linutil. (Preview panel description addition)
  • Create a discord server for linutil and invite the community.
  • Power Optimizations for Laptops
"},{"location":"roadmap/#milestones","title":"Milestones","text":""},{"location":"roadmap/#q3-2024","title":"Q3 2024","text":"
  • Finish the foundation of the project in CLI mode.
  • DENY ALL GUI Pull Requests while CLI and foundation is being established.
"},{"location":"roadmap/#q4-2024","title":"Q4 2024","text":"
  • GUI Brainstorming and Planning
  • GUI Implementation towards the end of Q4
"},{"location":"roadmap/#community-feedback","title":"Community Feedback","text":"
  • Encourage community input and suggestions for future development.
"},{"location":"userguide/","title":"User Guide","text":""},{"location":"userguide/#walkthrough","title":"Walkthrough","text":""},{"location":"userguide/#applications-setup","title":"Applications Setup","text":""},{"location":"userguide/#developer-tools","title":"Developer Tools","text":"
  • Github Desktop: GitHub Desktop is a user-friendly application that simplifies the process of managing Git repositories and interacting with GitHub, providing a graphical interface for tasks like committing, branching, and syncing changes.
  • Neovim: Neovim is a refactor, and sometimes redactor, in the tradition of Vim. It is not a rewrite but a continuation and extension of Vim. This command configures neovim from CTT's neovim configuration. https://github.com/ChrisTitusTech/neovim
  • Sublime Text: Sublime Text is a fast, lightweight, and customizable text editor known for its simplicity, powerful features, and wide range of plugins for various programming languages.
  • VS Code: Visual Studio Code (VS Code) is a lightweight, open-source code editor with built-in support for debugging, version control, and extensions for various programming languages and frameworks.
  • VS Codium: VSCodium is a free, open-source version of Visual Studio Code (VS Code) that removes Microsoft-specific telemetry and branding.
  • Meld: Meld is a visual diff and merge tool that helps compare files, directories, and version-controlled projects.
  • Ngrok: Ngrok is a tool that creates secure, temporary tunnels to expose local servers to the internet for testing and development.
"},{"location":"userguide/#communication-apps","title":"Communication Apps","text":"
  • Discord: Discord is a versatile communication platform for gamers and communities, offering voice, video, and text chat features.
  • Jitsi: Jitsi Meet is an open-source video conferencing tool that allows users to host and join secure meetings directly from their web browsers without the need for downloads.
  • Signal: Signal is a privacy-focused messaging app that provides end-to-end encryption for secure text, voice, and video communication.
  • Slack: Slack is a collaboration platform designed for team communication, featuring channels, direct messaging, file sharing, and integrations with various productivity tools.
  • Telegram: Telegram is a cloud-based messaging app known for its speed and security, offering features like group chats, channels, and end-to-end encrypted calls.
  • Zoom: Zoom is a widely-used video conferencing platform that allows users to host virtual meetings, webinars, and online collaboration with features like screen sharing and recording.
  • Thunderbird: Thunderbird is a free, open-source email client that offers powerful features like customizable email management, a built-in calendar, and extensive add-ons for enhanced functionality.
"},{"location":"userguide/#office-suites","title":"Office Suites","text":""},{"location":"userguide/#pdf-suites","title":"PDF Suites","text":""},{"location":"userguide/#web-browsers","title":"Web Browsers","text":"
  • Brave: Brave is a free and open-source web browser developed by Brave Software, Inc. based on the Chromium web browser.
  • Chromium: Chromium is an open-source web browser project started by Google, to provide the source code for the proprietary Google Chrome browser.
  • Google Chrome: Google Chrome is a fast, secure, and free web browser, built for the modern web.
  • LibreWolf: LibreWolf is a fork of Firefox, focused on privacy, security, and freedom.
  • Lynx: Lynx is a highly configurable text-based web browser for use on cursor-addressable character cell terminals.
  • Mozilla Firefox: Mozilla Firefox is a free and open-source web browser developed by the Mozilla Foundation.
  • Thorium: Thorium is a Chromium-based browser focused on privacy and performance.
  • Vivaldi: Vivaldi is a freeware, cross-platform web browser developed by Vivaldi Technologies.
  • Alacritty: Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows. This command installs and condifures alacritty terminal emulator.
  • Android Debloater: Universal Android Debloater (UAD) is a tool designed to help users remove bloatware and unnecessary pre-installed applications from Android devices, enhancing performance and user experience.
  • Bash Prompt: The .bashrc file is a script that runs every time a new terminal session is started in Unix-like operating systems. It is used to configure the shell session, set up aliases, define functions, and more, making the terminal easier to use and more powerful. This command configures the key sections and functionalities defined in the .bashrc file from CTT's mybash repository. https://github.com/ChrisTitusTech/mybash
  • Bottles: Bottles allows Windows software, like applications and games, to run on Linux. Bottles also provides tools to categorize, organize and optimize your applications.
  • DWM-Titus: DWM is a dynamic window manager for X. It manages windows in tiled, monocle and floating layouts. All of the layouts can be applied dynamically, optimising the environment for the application in use and the task performed. This command installs and configures DWM and a desktop manager. The list of patches applied can be found in CTT's DWM repository https://github.com/ChrisTitusTech/dwm-titus
  • Docker: Docker is an open platform that uses OS-level virtualization to deliver software in packages called containers.
  • Fastfetch: Fastfetch is a neofetch-like tool for fetching system information and displaying it prettily. It is written mainly in C, with performance and customizability in mind. This command installs fastfetch and configures from CTT's mybash repository. https://github.com/ChrisTitusTech/mybash
  • Flatpak / Flathub: Flatpak is a universal application sandbox for Linux that uses isolated packages from Flathub to prevent conflicts and system alterations, while alleviating dependency concerns. This command installs Flatpak and adds the Flathub repository
  • Grub Theme: Installs ChrisTitusTech's Top 5 Bootloader Themes script to allow for easy customization of GRUB.
  • Kitty: kitty is a free and open-source GPU-accelerated terminal emulator for Linux, macOS, and some BSD distributions, focused on performance and features. kitty is written in a mix of C and Python programming languages. This command installs and configures kitty.
  • Linutil Installer: Installs a distro-specific Linutil package locally.
  • Linutil Updater: Updates your local Linutil crate installation.
  • Rofi: Rofi is a window switcher, run dialog, ssh-launcher and dmenu replacement that started as a clone of simpleswitcher, written by Sean Pringle and later expanded by Dave Davenport. This command installs and configures rofi with configuration from CTT's DWM repo. https://github.com/ChrisTitusTech/dwm-titus
  • Waydroid: Waydroid is an emulator that allows you to run Android apps and games on Linux.
  • ZSH Prompt: The Z shell is a Unix shell that can be used as an interactive login shell and as a command interpreter for shell scripting. Zsh is an extended Bourne shell with many improvements, including some features of Bash, ksh, and tcsh. This command installs ZSH prompt and provides basic configuration.
"},{"location":"userguide/#gaming","title":"Gaming","text":""},{"location":"userguide/#diablo-ii-resurrected","title":"Diablo II Resurrected","text":"
  • Loot Filter: This is a loot filter for Diablo II Resurrected. It's designed to be a simple, clean, and easy to read loot filter that highlights the most important items. Works on battle.net and single player. No frills, no config, just highlights high runes and other valuable items. For more information visit: https://github.com/ChrisTitusTech/d2r-loot-filter
"},{"location":"userguide/#security","title":"Security","text":"
  • Firewall Baselines (CTT): Developed to ease iptables firewall configuration, UFW provides a user friendly way to create an IPv4 or IPv6 host-based firewall. This command installs UFW and configures UFW based on CTT's recommended rules. For more information visit: https://christitus.com/linux-security-mistakes
"},{"location":"userguide/#system-setup","title":"System Setup","text":""},{"location":"userguide/#arch-linux","title":"Arch Linux","text":"
  • Arch Server Setup: This command installs a minimal arch server setup under 5 minutes.
  • Paru AUR Helper: Paru is your standard pacman wrapping AUR helper with lots of features and minimal interaction. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers
  • Yay AUR Helper: Yet Another Yogurt - An AUR Helper Written in Go. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers
"},{"location":"userguide/#fedora","title":"Fedora","text":"
  • Configure DNF: Optimizes DNF for parallel downloads
  • Multimedia Codecs: This script is designed to install multimedia codecs, and to ensure RPM Fusion repositories are installed.
  • Nvidia Proprietary Drivers: This script is designed to download the proprietary NVIDIA drivers in Fedora.
  • RPM Fusion: RPM Fusion provides software that the Fedora Project or Red Hat doesn't want to ship. That software is provided as precompiled RPMs for all current Fedora versions and current Red Hat Enterprise Linux or clones versions; you can use the RPM Fusion repositories with tools like yum and PackageKit. For more information visit: https://rpmfusion.org/
  • Virtualization: Enables Virtualization through dnf
  • Build Prerequisites: This script is designed to handle the installation of various software dependencies across different Linux distributions
  • Full System Cleanup: This script is designed to remove unnecessary packages, clean old cache files, remove temporary files, and to empty the trash.
  • Full System Update: This command updates your system to the latest packages available for your distro
  • Gaming Dependencies: This script is designed to handle the installation of gaming dependencies across different Linux distributions
  • Global Theme: This script is designed to handle the installation and configuration of global theming
  • Remove Snaps: This script is designed to remove snap
  • TTY Fonts: This Script will set the default TTY font to Terminus size 32 Bold
"},{"location":"userguide/#utilities","title":"Utilities","text":""},{"location":"userguide/#monitor-control","title":"Monitor Control","text":"
  • Auto Detect Displays: This utility is designed to detect and apply recommended configuration for monitors connected with your system
  • Change Orientation: This utility is designed to change the orientation of monitors in your system
  • Disable Monitor: This utility is designed to disable a monitor in your system
  • Duplicate Displays: This utility is designed to duplicate display among multi-monitor setup in your system
  • Enable Monitor: This utility is designed to enable a monitor in your system
  • Extend Displays: This utility is designed to extend display among multi-monitor setup in your system
  • Manage Arrangement: This utility is designed to arrange monitors in multi-monitor setup in your system
  • Reset Scaling: This utility is designed to reset scaling of a monitor in your system
  • Scale Monitors: This utility is designed to change the scaling of monitors in your system
  • Set Primary Monitor: This utility is designed to set a Primary monitor in your system
"},{"location":"userguide/#user-account-manager","title":"User Account Manager","text":"
  • Auto Mount Drive: This utility is designed to help with automating the process of mounting a drive on to your system.
  • Bluetooth Manager: This utility is designed to manage bluetooth in your system
  • Numlock on Startup: This utility is designed to configure auto enabling of numlock on boot
  • Ollama: This utility is designed to manage ollama in your system
  • Service Manager: This utility is designed to manage services in your system
  • WiFi Manager: This utility is designed to manage wifi in your system
"}]} \ No newline at end of file diff --git a/userguide/index.html b/userguide/index.html index 7d3691f0..dd8c9e63 100644 --- a/userguide/index.html +++ b/userguide/index.html @@ -1 +1 @@ - User Guide - Chris Titus LinUtil Official Documentation
Announcement: This documentation is still in progress.

Walkthrough


System Setup

  • System Update: Starts a system-wide update.
  • Compile Setup: Installs tools and dependencies for compiling software.
  • Gaming Setup: Configures Steam, Lutris, etc.
  • Global Theming: Sets up and manages global themes.
  • Remove Snaps: Removes snap packages.
  • TTY Fonts: This Script will set the default TTY font to Terminus size 32 Bold

Arch Setup

  • Paru Setup: Installs the Paru AUR helper.
  • Yay Setup: Installs the Yay AUR helper.
  • Server Setup: Installs Arch Linux.

Fedora Setup

  • RPM Fusion Setup: Adds RPM Fusion free and nonfree repositories.
  • Multimedia Codecs: Installs multimedia codecs and updates multimedia-related packages. Requires RPM Fusion repositories to be set up first.
  • NVIDIA Proprietary Driver Setup: Installs proprietary NVIDIA drivers for GPUs from 2014 or later.
  • Virtualization Setup: Installs virtualization tools.
  • Configure DNF: Optimizes DNF for better speeds.

Applications Setup

  • Flathub: Installs Flatpak and Flathub.
  • Alacritty Setup: Installs and configures Alacritty for you.
  • DwmTitus Setup: Sets up the Dwm window manager.
  • Kitty Setup: Installs and configures Kitty for you.
  • Rofi Setup: Installs the Rofi application/script launcher.
  • Zsh Setup: Installs and configures Zsh for you.
  • Fastfetch Setup: Installs and configures Fastfetch.
  • Linutil Updater: Updates the Linutil AUR / Crates.io Package.
  • Linutil Installer: Installs Linutil via Crates.io or AUR.
  • Office Suite Setup: Installs various office suites and PDF viewers (OnlyOffice, LibreOffice, WPS Office, FreeOffice, Evince, Okular, PDF Studio Viewer, PDF Studio).

Developer Tools

  • Meld Setup: Installs Meld, a visual diff and merge tool.
  • Ngrok Setup: Installs Ngrok, a tool for creating secure tunnels to localhost.
  • Neovim Setup: Installs and configures Neovim, a Vim-based text editor.
  • VS Code Setup: Installs Visual Studio Code, a popular text editor.
  • Sublime Setup: Installs Sublime Text, a nice text editor for code and markup.
  • VS Codium Setup: Installs VS Codium, an open-source build of VS Code.
  • GitHub Desktop Setup: Installs GitHub Desktop, a GUI for Git and GitHub.

Security Features

  • Firewall Baselines: Sets up firewall rules.

Utilities

  • Wifi Control: Controls WiFi settings.
  • Numlock Control: Sets up Numlock on boot.
  • Bluetooth Control: Controls Bluetooth settings.

Monitor control

  • Reset Scaling: Resets monitor scaling to native resolution.
  • Scale Monitor: Scales smaller monitors to the highest resolution of a bigger monitor.
  • Enable Monitor: Enables a selected monitor.
  • Disable Monitor: Disables a selected monitor.
  • Set Brightness: Adjusts brightness for a selected monitor.
  • Set Resolutions: Sets resolutions for connected monitors.
  • Change Orientation: Changes the orientation of a selected monitor.
  • Extend Displays: Extends displays to the right.
  • Duplicate Displays: Duplicates displays.
  • Manage Arrangement: Manages the arrangement of multiple monitors.
  • Set Primary Monitor: Sets a selected monitor as the main display.
  • Auto Detect Displays: Sets common resolution.

User Account Manager

  • Add User: Creates a new user account.
  • Delete User: Deletes an existing user account.
  • Add to Group: Adds a user to specified groups.
  • Remove from Group: Removes a user from specified groups.
  • Change Password: Changes the password for a user account.
\ No newline at end of file + User Guide - Chris Titus LinUtil Official Documentation
Announcement: This documentation is still in progress.

Walkthrough

Applications Setup

Developer Tools

  • Github Desktop: GitHub Desktop is a user-friendly application that simplifies the process of managing Git repositories and interacting with GitHub, providing a graphical interface for tasks like committing, branching, and syncing changes.
  • Neovim: Neovim is a refactor, and sometimes redactor, in the tradition of Vim. It is not a rewrite but a continuation and extension of Vim. This command configures neovim from CTT's neovim configuration. https://github.com/ChrisTitusTech/neovim
  • Sublime Text: Sublime Text is a fast, lightweight, and customizable text editor known for its simplicity, powerful features, and wide range of plugins for various programming languages.
  • VS Code: Visual Studio Code (VS Code) is a lightweight, open-source code editor with built-in support for debugging, version control, and extensions for various programming languages and frameworks.
  • VS Codium: VSCodium is a free, open-source version of Visual Studio Code (VS Code) that removes Microsoft-specific telemetry and branding.
  • Meld: Meld is a visual diff and merge tool that helps compare files, directories, and version-controlled projects.
  • Ngrok: Ngrok is a tool that creates secure, temporary tunnels to expose local servers to the internet for testing and development.

Communication Apps

  • Discord: Discord is a versatile communication platform for gamers and communities, offering voice, video, and text chat features.
  • Jitsi: Jitsi Meet is an open-source video conferencing tool that allows users to host and join secure meetings directly from their web browsers without the need for downloads.
  • Signal: Signal is a privacy-focused messaging app that provides end-to-end encryption for secure text, voice, and video communication.
  • Slack: Slack is a collaboration platform designed for team communication, featuring channels, direct messaging, file sharing, and integrations with various productivity tools.
  • Telegram: Telegram is a cloud-based messaging app known for its speed and security, offering features like group chats, channels, and end-to-end encrypted calls.
  • Zoom: Zoom is a widely-used video conferencing platform that allows users to host virtual meetings, webinars, and online collaboration with features like screen sharing and recording.
  • Thunderbird: Thunderbird is a free, open-source email client that offers powerful features like customizable email management, a built-in calendar, and extensive add-ons for enhanced functionality.

Office Suites

PDF Suites

Web Browsers

  • Brave: Brave is a free and open-source web browser developed by Brave Software, Inc. based on the Chromium web browser.
  • Chromium: Chromium is an open-source web browser project started by Google, to provide the source code for the proprietary Google Chrome browser.
  • Google Chrome: Google Chrome is a fast, secure, and free web browser, built for the modern web.
  • LibreWolf: LibreWolf is a fork of Firefox, focused on privacy, security, and freedom.
  • Lynx: Lynx is a highly configurable text-based web browser for use on cursor-addressable character cell terminals.
  • Mozilla Firefox: Mozilla Firefox is a free and open-source web browser developed by the Mozilla Foundation.
  • Thorium: Thorium is a Chromium-based browser focused on privacy and performance.
  • Vivaldi: Vivaldi is a freeware, cross-platform web browser developed by Vivaldi Technologies.
  • Alacritty: Alacritty is a modern terminal emulator that comes with sensible defaults, but allows for extensive configuration. By integrating with other applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. The supported platforms currently consist of BSD, Linux, macOS and Windows. This command installs and condifures alacritty terminal emulator.
  • Android Debloater: Universal Android Debloater (UAD) is a tool designed to help users remove bloatware and unnecessary pre-installed applications from Android devices, enhancing performance and user experience.
  • Bash Prompt: The .bashrc file is a script that runs every time a new terminal session is started in Unix-like operating systems. It is used to configure the shell session, set up aliases, define functions, and more, making the terminal easier to use and more powerful. This command configures the key sections and functionalities defined in the .bashrc file from CTT's mybash repository. https://github.com/ChrisTitusTech/mybash
  • Bottles: Bottles allows Windows software, like applications and games, to run on Linux. Bottles also provides tools to categorize, organize and optimize your applications.
  • DWM-Titus: DWM is a dynamic window manager for X. It manages windows in tiled, monocle and floating layouts. All of the layouts can be applied dynamically, optimising the environment for the application in use and the task performed. This command installs and configures DWM and a desktop manager. The list of patches applied can be found in CTT's DWM repository https://github.com/ChrisTitusTech/dwm-titus
  • Docker: Docker is an open platform that uses OS-level virtualization to deliver software in packages called containers.
  • Fastfetch: Fastfetch is a neofetch-like tool for fetching system information and displaying it prettily. It is written mainly in C, with performance and customizability in mind. This command installs fastfetch and configures from CTT's mybash repository. https://github.com/ChrisTitusTech/mybash
  • Flatpak / Flathub: Flatpak is a universal application sandbox for Linux that uses isolated packages from Flathub to prevent conflicts and system alterations, while alleviating dependency concerns. This command installs Flatpak and adds the Flathub repository
  • Grub Theme: Installs ChrisTitusTech's Top 5 Bootloader Themes script to allow for easy customization of GRUB.
  • Kitty: kitty is a free and open-source GPU-accelerated terminal emulator for Linux, macOS, and some BSD distributions, focused on performance and features. kitty is written in a mix of C and Python programming languages. This command installs and configures kitty.
  • Linutil Installer: Installs a distro-specific Linutil package locally.
  • Linutil Updater: Updates your local Linutil crate installation.
  • Rofi: Rofi is a window switcher, run dialog, ssh-launcher and dmenu replacement that started as a clone of simpleswitcher, written by Sean Pringle and later expanded by Dave Davenport. This command installs and configures rofi with configuration from CTT's DWM repo. https://github.com/ChrisTitusTech/dwm-titus
  • Waydroid: Waydroid is an emulator that allows you to run Android apps and games on Linux.
  • ZSH Prompt: The Z shell is a Unix shell that can be used as an interactive login shell and as a command interpreter for shell scripting. Zsh is an extended Bourne shell with many improvements, including some features of Bash, ksh, and tcsh. This command installs ZSH prompt and provides basic configuration.

Gaming

Diablo II Resurrected

  • Loot Filter: This is a loot filter for Diablo II Resurrected. It's designed to be a simple, clean, and easy to read loot filter that highlights the most important items. Works on battle.net and single player. No frills, no config, just highlights high runes and other valuable items. For more information visit: https://github.com/ChrisTitusTech/d2r-loot-filter

Security

  • Firewall Baselines (CTT): Developed to ease iptables firewall configuration, UFW provides a user friendly way to create an IPv4 or IPv6 host-based firewall. This command installs UFW and configures UFW based on CTT's recommended rules. For more information visit: https://christitus.com/linux-security-mistakes

System Setup

Arch Linux

  • Arch Server Setup: This command installs a minimal arch server setup under 5 minutes.
  • Paru AUR Helper: Paru is your standard pacman wrapping AUR helper with lots of features and minimal interaction. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers
  • Yay AUR Helper: Yet Another Yogurt - An AUR Helper Written in Go. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers

Fedora

  • Configure DNF: Optimizes DNF for parallel downloads
  • Multimedia Codecs: This script is designed to install multimedia codecs, and to ensure RPM Fusion repositories are installed.
  • Nvidia Proprietary Drivers: This script is designed to download the proprietary NVIDIA drivers in Fedora.
  • RPM Fusion: RPM Fusion provides software that the Fedora Project or Red Hat doesn't want to ship. That software is provided as precompiled RPMs for all current Fedora versions and current Red Hat Enterprise Linux or clones versions; you can use the RPM Fusion repositories with tools like yum and PackageKit. For more information visit: https://rpmfusion.org/
  • Virtualization: Enables Virtualization through dnf
  • Build Prerequisites: This script is designed to handle the installation of various software dependencies across different Linux distributions
  • Full System Cleanup: This script is designed to remove unnecessary packages, clean old cache files, remove temporary files, and to empty the trash.
  • Full System Update: This command updates your system to the latest packages available for your distro
  • Gaming Dependencies: This script is designed to handle the installation of gaming dependencies across different Linux distributions
  • Global Theme: This script is designed to handle the installation and configuration of global theming
  • Remove Snaps: This script is designed to remove snap
  • TTY Fonts: This Script will set the default TTY font to Terminus size 32 Bold

Utilities

Monitor Control

  • Auto Detect Displays: This utility is designed to detect and apply recommended configuration for monitors connected with your system
  • Change Orientation: This utility is designed to change the orientation of monitors in your system
  • Disable Monitor: This utility is designed to disable a monitor in your system
  • Duplicate Displays: This utility is designed to duplicate display among multi-monitor setup in your system
  • Enable Monitor: This utility is designed to enable a monitor in your system
  • Extend Displays: This utility is designed to extend display among multi-monitor setup in your system
  • Manage Arrangement: This utility is designed to arrange monitors in multi-monitor setup in your system
  • Reset Scaling: This utility is designed to reset scaling of a monitor in your system
  • Scale Monitors: This utility is designed to change the scaling of monitors in your system
  • Set Primary Monitor: This utility is designed to set a Primary monitor in your system

User Account Manager

  • Auto Mount Drive: This utility is designed to help with automating the process of mounting a drive on to your system.
  • Bluetooth Manager: This utility is designed to manage bluetooth in your system
  • Numlock on Startup: This utility is designed to configure auto enabling of numlock on boot
  • Ollama: This utility is designed to manage ollama in your system
  • Service Manager: This utility is designed to manage services in your system
  • WiFi Manager: This utility is designed to manage wifi in your system
\ No newline at end of file