mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 13:22:28 +00:00
Compare commits
23 Commits
9aad373e6f
...
bbaa44d221
Author | SHA1 | Date | |
---|---|---|---|
|
bbaa44d221 | ||
|
81ba99beec | ||
|
77693e6692 | ||
|
8ea3da9843 | ||
|
176b19d692 | ||
|
98e2f83f43 | ||
|
9d1dc35f43 | ||
|
1234edd466 | ||
|
d1a1812709 | ||
|
f2a1766289 | ||
|
6728e7ee9b | ||
|
c36879e22f | ||
|
e463037e69 | ||
|
f0734f361c | ||
|
565f507190 | ||
|
9a8e62e715 | ||
|
f332467f14 | ||
|
a79798ff23 | ||
|
e5bc20ffb5 | ||
|
6ecac4ae62 | ||
|
58761570c3 | ||
|
7a8030ffaa | ||
|
a5e29b5fed |
7
.github/dependabot.yml
vendored
7
.github/dependabot.yml
vendored
|
@ -8,10 +8,3 @@ updates:
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
ignore:
|
|
||||||
- dependency-name: "actions/stale"
|
|
||||||
versions: '>= 9'
|
|
||||||
- dependency-name: "actions/setup-python"
|
|
||||||
versions: '> 4'
|
|
||||||
- dependency-name: "crossterm"
|
|
||||||
versions: '> 0.27.0'
|
|
||||||
|
|
89
.github/mkdocs.yml
vendored
89
.github/mkdocs.yml
vendored
|
@ -1,89 +0,0 @@
|
||||||
site_name: Chris Titus LinUtil Official Documentation
|
|
||||||
repo_url: https://github.com/ChrisTitusTech/linutil
|
|
||||||
docs_dir: '../docs'
|
|
||||||
|
|
||||||
nav:
|
|
||||||
- Introduction: 'index.md'
|
|
||||||
- User Guide: 'userguide.md'
|
|
||||||
- Contributing:
|
|
||||||
- Contributing Guide: 'contributing.md'
|
|
||||||
- Roadmap: 'roadmap.md'
|
|
||||||
- Documentation:
|
|
||||||
- Known Issues: 'KnownIssues.md'
|
|
||||||
- FAQ: 'faq.md'
|
|
||||||
|
|
||||||
theme:
|
|
||||||
name: material
|
|
||||||
custom_dir: '../overrides'
|
|
||||||
features:
|
|
||||||
- navigation.tabs
|
|
||||||
- navigation.sections
|
|
||||||
- toc.integrate
|
|
||||||
- navigation.top
|
|
||||||
- search.suggest
|
|
||||||
- search.highlight
|
|
||||||
- content.tabs.link
|
|
||||||
- content.code.annotation
|
|
||||||
- content.code.copy
|
|
||||||
language: en
|
|
||||||
logo: assets/favicon.png
|
|
||||||
favicon: assets/favicon.png
|
|
||||||
palette:
|
|
||||||
# Palette toggle for automatic mode
|
|
||||||
- media: "(prefers-color-scheme)"
|
|
||||||
toggle:
|
|
||||||
icon: material/brightness-auto
|
|
||||||
name: Switch to light mode
|
|
||||||
|
|
||||||
# Palette toggle for light mode
|
|
||||||
- media: "(prefers-color-scheme: light)"
|
|
||||||
scheme: default
|
|
||||||
accent: blue
|
|
||||||
toggle:
|
|
||||||
icon: material/brightness-7
|
|
||||||
name: Switch to dark mode
|
|
||||||
|
|
||||||
# Palette toggle for dark mode
|
|
||||||
- media: "(prefers-color-scheme: dark)"
|
|
||||||
scheme: slate
|
|
||||||
primary: black
|
|
||||||
accent: blue
|
|
||||||
toggle:
|
|
||||||
icon: material/weather-night
|
|
||||||
name: Switch to light mode
|
|
||||||
markdown_extensions:
|
|
||||||
- admonition
|
|
||||||
- pymdownx.details
|
|
||||||
- pymdownx.superfences
|
|
||||||
- pymdownx.superfences:
|
|
||||||
custom_fences:
|
|
||||||
- name: mermaid
|
|
||||||
class: mermaid
|
|
||||||
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
||||||
- abbr
|
|
||||||
- attr_list
|
|
||||||
- pymdownx.snippets
|
|
||||||
- md_in_html
|
|
||||||
- pymdownx.superfences
|
|
||||||
- pymdownx.tabbed:
|
|
||||||
alternate_style: true
|
|
||||||
- pymdownx.highlight:
|
|
||||||
anchor_linenums: true
|
|
||||||
line_spans: __span
|
|
||||||
pygments_lang_class: true
|
|
||||||
- pymdownx.inlinehilite
|
|
||||||
- def_list
|
|
||||||
- pymdownx.tasklist:
|
|
||||||
custom_checkbox: true
|
|
||||||
- toc:
|
|
||||||
permalink: true
|
|
||||||
|
|
||||||
plugins:
|
|
||||||
- search
|
|
||||||
- awesome-pages
|
|
||||||
- git-revision-date-localized
|
|
||||||
- minify:
|
|
||||||
minify_html: true
|
|
||||||
htmlmin_opts:
|
|
||||||
remove_comments: true
|
|
||||||
cache_safe: true
|
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
56
.github/workflows/github-pages.yml
vendored
56
.github/workflows/github-pages.yml
vendored
|
@ -1,56 +0,0 @@
|
||||||
name: GitHub Pages Deploy
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- '.github/mkdocs.yml'
|
|
||||||
- '.github/requirements.txt'
|
|
||||||
- 'docs/**'
|
|
||||||
- 'overrides/**'
|
|
||||||
- '.github/CONTRIBUTING.md'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
environment: linutil_env
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: '0' # Fetch all commit history for all branches as well as tags.
|
|
||||||
|
|
||||||
- name: Copy Contributing Guidelines
|
|
||||||
run: |
|
|
||||||
echo -e "<!-- THIS FILE IS GENERATED AUTOMATICALLY. EDIT .github/CONTRIBUTING.md -->\n\n$(cat .github/CONTRIBUTING.md)" > 'docs/contributing.md'
|
|
||||||
|
|
||||||
- name: Create Pull Request
|
|
||||||
uses: peter-evans/create-pull-request@v6
|
|
||||||
with:
|
|
||||||
commit-message: Update Contributing Guidelines
|
|
||||||
title: 'docs: Update Contributing Guidelines'
|
|
||||||
body: 'Automated update of Contributing Guidelines from .github/CONTRIBUTING.md'
|
|
||||||
branch: update-contributing-guidelines
|
|
||||||
delete-branch: true
|
|
||||||
base: main
|
|
||||||
labels: documentation
|
|
||||||
token: ${{ secrets.PAT_TOKEN }}
|
|
||||||
if: success()
|
|
||||||
|
|
||||||
- name: Setup Python
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: 3.x # Install latest Stable release of Python 3
|
|
||||||
cache: 'pip' # Caching pip dependencies
|
|
||||||
|
|
||||||
- name: Install Necessary Dependencies
|
|
||||||
run: pip install -r .github/requirements.txt
|
|
||||||
|
|
||||||
- name: Build & Deploy using mkdocs
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
run: mkdocs gh-deploy --force -f .github/mkdocs.yml
|
|
6
.github/workflows/preview.yml
vendored
6
.github/workflows/preview.yml
vendored
|
@ -59,16 +59,16 @@ jobs:
|
||||||
- name: Generate preview
|
- name: Generate preview
|
||||||
uses: charmbracelet/vhs-action@v2.1.0
|
uses: charmbracelet/vhs-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
path: "docs/assets/preview.tape"
|
path: ".github/preview.tape"
|
||||||
|
|
||||||
- name: Move preview
|
- name: Move preview
|
||||||
run: mv preview.gif docs/assets/preview.gif
|
run: mv preview.gif .github/preview.gif
|
||||||
|
|
||||||
- name: Create PR
|
- name: Create PR
|
||||||
uses: peter-evans/create-pull-request@v7.0.5
|
uses: peter-evans/create-pull-request@v7.0.5
|
||||||
with:
|
with:
|
||||||
commit-message: Preview for ${{ env.tag_name }}
|
commit-message: Preview for ${{ env.tag_name }}
|
||||||
file-pattern: "docs/assets/preview.gif"
|
file-pattern: ".github/preview.gif"
|
||||||
add-options: "--force"
|
add-options: "--force"
|
||||||
token: ${{ secrets.PAT_TOKEN }}
|
token: ${{ secrets.PAT_TOKEN }}
|
||||||
branch: feature/preview-${{ env.tag_name }}
|
branch: feature/preview-${{ env.tag_name }}
|
||||||
|
|
58
.github/workflows/xtask.yml
vendored
58
.github/workflows/xtask.yml
vendored
|
@ -1,58 +0,0 @@
|
||||||
name: XTasks
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "xtask"
|
|
||||||
- "Cargo.toml"
|
|
||||||
- "Cargo.lock"
|
|
||||||
- ".cargo"
|
|
||||||
- "core/tabs"
|
|
||||||
- "docs"
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- "xtask"
|
|
||||||
- "Cargo.toml"
|
|
||||||
- "Cargo.lock"
|
|
||||||
- ".cargo"
|
|
||||||
- "core/tabs"
|
|
||||||
- "docs"
|
|
||||||
|
|
||||||
env:
|
|
||||||
CARGO_TERM_COLOR: always
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docgen:
|
|
||||||
name: DocGen
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout sources
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Install Rust
|
|
||||||
uses: dtolnay/rust-toolchain@stable
|
|
||||||
|
|
||||||
- name: Cache Cargo registry
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.cargo/registry
|
|
||||||
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-cargo-registry-
|
|
||||||
|
|
||||||
- name: Cache Cargo index
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: ~/.cargo/git
|
|
||||||
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: ${{ runner.os }}-cargo-index-
|
|
||||||
|
|
||||||
- name: Run cargo xtask docgen
|
|
||||||
run: cargo xtask docgen
|
|
||||||
|
|
||||||
- name: Check uncommitted documentation changes
|
|
||||||
run: |
|
|
||||||
git diff
|
|
||||||
git diff-files --quiet \
|
|
||||||
|| (echo "Run 'cargo xtask docgen' and push the changes" \
|
|
||||||
&& exit 1)
|
|
25
Cargo.lock
generated
25
Cargo.lock
generated
|
@ -435,7 +435,6 @@ dependencies = [
|
||||||
"ansi-to-tui",
|
"ansi-to-tui",
|
||||||
"anstyle",
|
"anstyle",
|
||||||
"clap",
|
"clap",
|
||||||
"crossterm",
|
|
||||||
"ego-tree",
|
"ego-tree",
|
||||||
"linutil_core",
|
"linutil_core",
|
||||||
"oneshot",
|
"oneshot",
|
||||||
|
@ -443,6 +442,7 @@ dependencies = [
|
||||||
"rand",
|
"rand",
|
||||||
"ratatui",
|
"ratatui",
|
||||||
"temp-dir",
|
"temp-dir",
|
||||||
|
"textwrap",
|
||||||
"tree-sitter-bash",
|
"tree-sitter-bash",
|
||||||
"tree-sitter-highlight",
|
"tree-sitter-highlight",
|
||||||
"tui-term",
|
"tui-term",
|
||||||
|
@ -889,6 +889,12 @@ version = "1.13.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "smawk"
|
||||||
|
version = "0.3.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "static_assertions"
|
name = "static_assertions"
|
||||||
version = "1.1.0"
|
version = "1.1.0"
|
||||||
|
@ -955,6 +961,17 @@ dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "textwrap"
|
||||||
|
version = "0.16.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
|
||||||
|
dependencies = [
|
||||||
|
"smawk",
|
||||||
|
"unicode-linebreak",
|
||||||
|
"unicode-width 0.1.14",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.64"
|
version = "1.0.64"
|
||||||
|
@ -1067,6 +1084,12 @@ version = "1.0.13"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-linebreak"
|
||||||
|
version = "0.1.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-segmentation"
|
name = "unicode-segmentation"
|
||||||
version = "1.11.0"
|
version = "1.11.0"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<!-- TODO: crates.io package here + <br> -->
|
<!-- TODO: crates.io package here + <br> -->
|
||||||
[![Crates.io Version](https://img.shields.io/crates/v/linutil_tui?style=for-the-badge&color=%23af3a03)](https://crates.io/crates/linutil_tui) [![linutil AUR Version](https://img.shields.io/aur/version/linutil?style=for-the-badge&label=%5BAUR%5D%20linutil&color=%23230567ff)](https://aur.archlinux.org/packages/linutil) [![linutil-bin AUR Version](https://img.shields.io/aur/version/linutil-bin?style=for-the-badge&label=%5BAUR%5D%20linutil-bin&color=%23230567ff)](https://aur.archlinux.org/packages/linutil-bin)
|
[![Crates.io Version](https://img.shields.io/crates/v/linutil_tui?style=for-the-badge&color=%23af3a03)](https://crates.io/crates/linutil_tui) [![linutil AUR Version](https://img.shields.io/aur/version/linutil?style=for-the-badge&label=%5BAUR%5D%20linutil&color=%23230567ff)](https://aur.archlinux.org/packages/linutil) [![linutil-bin AUR Version](https://img.shields.io/aur/version/linutil-bin?style=for-the-badge&label=%5BAUR%5D%20linutil-bin&color=%23230567ff)](https://aur.archlinux.org/packages/linutil-bin)
|
||||||
|
|
||||||
![Preview](docs/assets/preview.gif)
|
![Preview](/.github/preview.gif)
|
||||||
|
|
||||||
**Linutil** is a distro-agnostic toolbox designed to simplify everyday Linux tasks. It helps you set up applications and optimize your system for specific use cases. The utility is actively developed in Rust 🦀, providing performance and reliability.
|
**Linutil** is a distro-agnostic toolbox designed to simplify everyday Linux tasks. It helps you set up applications and optimize your system for specific use cases. The utility is actively developed in Rust 🦀, providing performance and reliability.
|
||||||
|
|
||||||
|
@ -78,13 +78,15 @@ If you find Linutil helpful, please consider giving it a ⭐️ to show your sup
|
||||||
|
|
||||||
## 🎓 Documentation
|
## 🎓 Documentation
|
||||||
|
|
||||||
For comprehensive information on how to use Linutil, visit the [Linutil Official Documentation](https://christitustech.github.io/linutil/).
|
For comprehensive information on how to use Linutil, visit the [Linutil Official Documentation](https://chris-titus-docs.github.io/linutil-docs/).
|
||||||
|
|
||||||
## 🛠 Contributing
|
## 🛠 Contributing
|
||||||
|
|
||||||
We welcome contributions from the community! Before you start, please review our [Contributing Guidelines](.github/CONTRIBUTING.md) to understand how to make the most effective and efficient contributions.
|
We welcome contributions from the community! Before you start, please review our [Contributing Guidelines](.github/CONTRIBUTING.md) to understand how to make the most effective and efficient contributions.
|
||||||
|
|
||||||
[Official LinUtil Roadmap](https://christitustech.github.io/linutil/roadmap)
|
[Official LinUtil Roadmap](https://chris-titus-docs.github.io/linutil-docs/roadmap/)
|
||||||
|
|
||||||
|
Docs are now [here](https://github.com/Chris-Titus-Docs/linutil-docs)
|
||||||
|
|
||||||
## 🏅 Thanks to All Contributors
|
## 🏅 Thanks to All Contributors
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
use std::{
|
use std::{
|
||||||
fs::File,
|
fs::File,
|
||||||
io::{BufRead, BufReader, Read},
|
io::{BufRead, BufReader, Read},
|
||||||
|
ops::{Deref, DerefMut},
|
||||||
os::unix::fs::PermissionsExt,
|
os::unix::fs::PermissionsExt,
|
||||||
path::{Path, PathBuf},
|
path::{Path, PathBuf},
|
||||||
rc::Rc,
|
rc::Rc,
|
||||||
|
@ -14,8 +15,34 @@ use temp_dir::TempDir;
|
||||||
|
|
||||||
const TAB_DATA: Dir = include_dir!("$CARGO_MANIFEST_DIR/tabs");
|
const TAB_DATA: Dir = include_dir!("$CARGO_MANIFEST_DIR/tabs");
|
||||||
|
|
||||||
pub fn get_tabs(validate: bool) -> (TempDir, Vec<Tab>) {
|
// Allow the unused TempDir to be stored for later destructor call
|
||||||
let (temp_dir, tab_files) = TabList::get_tabs();
|
#[allow(dead_code)]
|
||||||
|
pub struct TabList(pub Vec<Tab>, TempDir);
|
||||||
|
|
||||||
|
// Implement deref to allow Vec<Tab> methods to be called on TabList
|
||||||
|
impl Deref for TabList {
|
||||||
|
type Target = Vec<Tab>;
|
||||||
|
|
||||||
|
fn deref(&self) -> &Self::Target {
|
||||||
|
&self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl DerefMut for TabList {
|
||||||
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
||||||
|
&mut self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl IntoIterator for TabList {
|
||||||
|
type Item = Tab;
|
||||||
|
type IntoIter = std::vec::IntoIter<Self::Item>;
|
||||||
|
|
||||||
|
fn into_iter(self) -> Self::IntoIter {
|
||||||
|
self.0.into_iter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_tabs(validate: bool) -> TabList {
|
||||||
|
let (temp_dir, tab_files) = TabDirectories::get_tabs();
|
||||||
|
|
||||||
let tabs: Vec<_> = tab_files
|
let tabs: Vec<_> = tab_files
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
@ -50,11 +77,11 @@ pub fn get_tabs(validate: bool) -> (TempDir, Vec<Tab>) {
|
||||||
if tabs.is_empty() {
|
if tabs.is_empty() {
|
||||||
panic!("No tabs found");
|
panic!("No tabs found");
|
||||||
}
|
}
|
||||||
(temp_dir, tabs)
|
TabList(tabs, temp_dir)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
struct TabList {
|
struct TabDirectories {
|
||||||
directories: Vec<PathBuf>,
|
directories: Vec<PathBuf>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -246,9 +273,9 @@ fn is_executable(path: &Path) -> bool {
|
||||||
.unwrap_or(false)
|
.unwrap_or(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TabList {
|
impl TabDirectories {
|
||||||
fn get_tabs() -> (TempDir, Vec<PathBuf>) {
|
fn get_tabs() -> (TempDir, Vec<PathBuf>) {
|
||||||
let temp_dir = TempDir::new().unwrap();
|
let temp_dir = TempDir::with_prefix("linutil_scripts").unwrap();
|
||||||
TAB_DATA
|
TAB_DATA
|
||||||
.extract(&temp_dir)
|
.extract(&temp_dir)
|
||||||
.expect("Failed to extract the saved directory");
|
.expect("Failed to extract the saved directory");
|
||||||
|
|
|
@ -5,7 +5,7 @@ use std::rc::Rc;
|
||||||
use ego_tree::Tree;
|
use ego_tree::Tree;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
pub use inner::get_tabs;
|
pub use inner::{get_tabs, TabList};
|
||||||
|
|
||||||
#[derive(Clone, Hash, Eq, PartialEq)]
|
#[derive(Clone, Hash, Eq, PartialEq)]
|
||||||
pub enum Command {
|
pub enum Command {
|
||||||
|
|
|
@ -214,7 +214,22 @@ setupDisplayManager() {
|
||||||
printf "%b\n" "${YELLOW}3. GDM ${RC}"
|
printf "%b\n" "${YELLOW}3. GDM ${RC}"
|
||||||
printf "%b\n" "${YELLOW} ${RC}"
|
printf "%b\n" "${YELLOW} ${RC}"
|
||||||
printf "%b" "${YELLOW}Please select one: ${RC}"
|
printf "%b" "${YELLOW}Please select one: ${RC}"
|
||||||
read -r DM
|
read -r choice
|
||||||
|
case "$choice" in
|
||||||
|
1)
|
||||||
|
DM="sddm"
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
DM="lightdm"
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
DM="gdm"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Invalid selection! Please choose 1, 2, or 3.${RC}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
case "$PACKAGER" in
|
case "$PACKAGER" in
|
||||||
pacman)
|
pacman)
|
||||||
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm "$DM"
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm "$DM"
|
||||||
|
|
33
core/tabs/applications-setup/podman-compose-setup.sh
Normal file
33
core/tabs/applications-setup/podman-compose-setup.sh
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ../common-script.sh
|
||||||
|
|
||||||
|
installPodmanCompose() {
|
||||||
|
if ! command_exists podman-compose; then
|
||||||
|
printf "%b\n" "${YELLOW}Installing Podman Compose...${RC}"
|
||||||
|
case "$PACKAGER" in
|
||||||
|
apt-get|nala)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y podman-compose
|
||||||
|
;;
|
||||||
|
zypper)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" --non-interactive install podman-compose
|
||||||
|
;;
|
||||||
|
pacman)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --noconfirm --needed podman-compose
|
||||||
|
;;
|
||||||
|
dnf)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y podman-compose
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Unsupported package manager: ${PACKAGER}${RC}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
printf "%b\n" "${GREEN}Podman Compose is already installed.${RC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
checkEscalationTool
|
||||||
|
installPodmanCompose
|
33
core/tabs/applications-setup/podman-setup.sh
Normal file
33
core/tabs/applications-setup/podman-setup.sh
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ../common-script.sh
|
||||||
|
|
||||||
|
installPodman() {
|
||||||
|
if ! command_exists podman; then
|
||||||
|
printf "%b\n" "${YELLOW}Installing Podman...${RC}"
|
||||||
|
case "$PACKAGER" in
|
||||||
|
apt-get|nala)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y podman
|
||||||
|
;;
|
||||||
|
zypper)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" --non-interactive install podman
|
||||||
|
;;
|
||||||
|
pacman)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --noconfirm --needed podman
|
||||||
|
;;
|
||||||
|
dnf)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y podman
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Unsupported package manager: ${PACKAGER}${RC}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
printf "%b\n" "${GREEN}Podman is already installed.${RC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
checkEscalationTool
|
||||||
|
installPodman
|
|
@ -200,7 +200,7 @@ task_list = "FI"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Alacritty"
|
name = "Alacritty"
|
||||||
description = "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.\nThis command installs and condifures alacritty terminal emulator."
|
description = "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 configures alacritty terminal emulator."
|
||||||
script = "alacritty-setup.sh"
|
script = "alacritty-setup.sh"
|
||||||
task_list = "I FM"
|
task_list = "I FM"
|
||||||
|
|
||||||
|
@ -212,13 +212,13 @@ task_list = "I"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Bash Prompt"
|
name = "Bash Prompt"
|
||||||
description = "The .bashrc file is a script that runs every time a new terminal session is started in Unix-like operating systems.\nIt is used to configure the shell session, set up aliases, define functions, and more, making the terminal easier to use and more powerful.\nThis command configures the key sections and functionalities defined in the .bashrc file from CTT's mybash repository.\nhttps://github.com/ChrisTitusTech/mybash"
|
description = "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"
|
||||||
script = "mybash-setup.sh"
|
script = "mybash-setup.sh"
|
||||||
task_list = "I FM"
|
task_list = "I FM"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Bottles"
|
name = "Bottles"
|
||||||
description = "Bottles allows Windows software, like applications and games, to run on Linux.\nBottles also provides tools to categorize, organize and optimize your applications."
|
description = "Bottles allows Windows software, like applications and games, to run on Linux. Bottles also provides tools to categorize, organize and optimize your applications."
|
||||||
script = "bottles-setup.sh"
|
script = "bottles-setup.sh"
|
||||||
task_list = "FI"
|
task_list = "FI"
|
||||||
|
|
||||||
|
@ -228,6 +228,18 @@ description = "Docker is an open platform that uses OS-level virtualization to d
|
||||||
script = "docker-setup.sh"
|
script = "docker-setup.sh"
|
||||||
task_list = "I SS"
|
task_list = "I SS"
|
||||||
|
|
||||||
|
[[data]]
|
||||||
|
name = "Podman"
|
||||||
|
description = "Podman is a daemon-less open platform that uses OS-level virtualization to deliver software in packages called containers."
|
||||||
|
script = "podman-setup.sh"
|
||||||
|
task_list = "I SS"
|
||||||
|
|
||||||
|
[[data]]
|
||||||
|
name = "Podman-compose"
|
||||||
|
description = "Podman Compose is a tool for defining and running multi-container applications using Podman."
|
||||||
|
script = "podman-compose-setup.sh"
|
||||||
|
task_list = "I SS"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "DWM-Titus"
|
name = "DWM-Titus"
|
||||||
description = "DWM is a dynamic window manager for X.\nIt manages windows in tiled, monocle and floating layouts.\nAll of the layouts can be applied dynamically, optimising the environment for the application in use and the task performed.\nThis command installs and configures DWM and a desktop manager.\nThe list of patches applied can be found in CTT's DWM repository\nhttps://github.com/ChrisTitusTech/dwm-titus"
|
description = "DWM is a dynamic window manager for X.\nIt manages windows in tiled, monocle and floating layouts.\nAll of the layouts can be applied dynamically, optimising the environment for the application in use and the task performed.\nThis command installs and configures DWM and a desktop manager.\nThe list of patches applied can be found in CTT's DWM repository\nhttps://github.com/ChrisTitusTech/dwm-titus"
|
||||||
|
@ -236,13 +248,13 @@ task_list = "I PFM SS"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Fastfetch"
|
name = "Fastfetch"
|
||||||
description = "Fastfetch is a neofetch-like tool for fetching system information and displaying it prettily.\nIt is written mainly in C, with performance and customizability in mind.\nThis command installs fastfetch and configures from CTT's mybash repository.\nhttps://github.com/ChrisTitusTech/mybash"
|
description = "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"
|
||||||
script = "fastfetch-setup.sh"
|
script = "fastfetch-setup.sh"
|
||||||
task_list = "I FM"
|
task_list = "I FM"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Flatpak / Flathub"
|
name = "Flatpak / Flathub"
|
||||||
description = "Flatpak is a universal application sandbox for Linux that uses isolated packages from Flathub to prevent conflicts and system alterations, while alleviating dependency concerns.\nThis command installs Flatpak and adds the Flathub repository"
|
description = "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"
|
||||||
script = "setup-flatpak.sh"
|
script = "setup-flatpak.sh"
|
||||||
task_list = "I"
|
task_list = "I"
|
||||||
|
|
||||||
|
@ -254,7 +266,7 @@ task_list = "PFM"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Kitty"
|
name = "Kitty"
|
||||||
description = "kitty is a free and open-source GPU-accelerated terminal emulator for Linux, macOS, and some BSD distributions, focused on performance and features.\nkitty is written in a mix of C and Python programming languages.\n This command installs and configures kitty."
|
description = "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."
|
||||||
script = "kitty-setup.sh"
|
script = "kitty-setup.sh"
|
||||||
task_list = "I FM"
|
task_list = "I FM"
|
||||||
|
|
||||||
|
@ -282,7 +294,7 @@ values = [ "linutil" ]
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Rofi"
|
name = "Rofi"
|
||||||
description = "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.\nThis command installs and configures rofi with configuration from CTT's DWM repo.\nhttps://github.com/ChrisTitusTech/dwm-titus"
|
description = "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"
|
||||||
script = "rofi-setup.sh"
|
script = "rofi-setup.sh"
|
||||||
task_list = "I FM"
|
task_list = "I FM"
|
||||||
|
|
||||||
|
@ -298,6 +310,6 @@ values = [ "wayland", "Wayland" ]
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "ZSH Prompt"
|
name = "ZSH Prompt"
|
||||||
description = "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.\nThis command installs ZSH prompt and provides basic configuration."
|
description = "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."
|
||||||
script = "zsh-setup.sh"
|
script = "zsh-setup.sh"
|
||||||
task_list = "I FM"
|
task_list = "I FM"
|
|
@ -5,6 +5,6 @@ name = "Diablo II Resurrected"
|
||||||
|
|
||||||
[[data.entries]]
|
[[data.entries]]
|
||||||
name = "Loot Filter"
|
name = "Loot Filter"
|
||||||
description = "This is a loot filter for Diablo II Resurrected.\nIt's designed to be a simple, clean, and easy to read loot filter that highlights the most important items.\nWorks on battle.net and single player.\nNo frills, no config, just highlights high runes and other valuable items.\nFor more information visit: https://github.com/ChrisTitusTech/d2r-loot-filter"
|
description = "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"
|
||||||
script = "diablo-ii/d2r-loot-filters.sh"
|
script = "diablo-ii/d2r-loot-filters.sh"
|
||||||
task_list = "FM"
|
task_list = "FM"
|
||||||
|
|
|
@ -2,6 +2,6 @@ name = "Security"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Firewall Baselines (CTT)"
|
name = "Firewall Baselines (CTT)"
|
||||||
description = "Developed to ease iptables firewall configuration, UFW provides a user friendly way to create an IPv4 or IPv6 host-based firewall.\nThis command installs UFW and configures UFW based on CTT's recommended rules.\nFor more information visit: https://christitus.com/linux-security-mistakes"
|
description = "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"
|
||||||
script = "firewall-baselines.sh"
|
script = "firewall-baselines.sh"
|
||||||
task_list = "I SS"
|
task_list = "I SS"
|
||||||
|
|
60
core/tabs/system-setup/arch/linux-neptune.sh
Executable file
60
core/tabs/system-setup/arch/linux-neptune.sh
Executable file
|
@ -0,0 +1,60 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ../../common-script.sh
|
||||||
|
|
||||||
|
setUpRepos() {
|
||||||
|
if ! grep -q "^\s*\[jupiter-staging\]" /etc/pacman.conf; then
|
||||||
|
printf "%b\n" "${CYAN}Adding jupiter-staging to pacman repositories...${RC}"
|
||||||
|
echo "[jupiter-staging]" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
||||||
|
echo "Server = https://steamdeck-packages.steamos.cloud/archlinux-mirror/\$repo/os/\$arch" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
||||||
|
echo "SigLevel = Never" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
||||||
|
fi
|
||||||
|
if ! grep -q "^\s*\[holo-staging\]" /etc/pacman.conf; then
|
||||||
|
printf "%b\n" "${CYAN}Adding holo-staging to pacman repositories...${RC}"
|
||||||
|
echo "[holo-staging]" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
||||||
|
echo "Server = https://steamdeck-packages.steamos.cloud/archlinux-mirror/\$repo/os/\$arch" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
||||||
|
echo "SigLevel = Never" | "$ESCALATION_TOOL" tee -a /etc/pacman.conf
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
installKernel() {
|
||||||
|
if ! "$PACKAGER" -Q | grep -q "\blinux-neptune"; then
|
||||||
|
printf "%b\n" "${CYAN}Installing linux-neptune..."
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -Syyu --noconfirm
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --noconfirm linux-neptune linux-neptune-headers steamdeck-dsp jupiter-staging/alsa-ucm-conf
|
||||||
|
"$ESCALATION_TOOL" mkinitcpio -P
|
||||||
|
else
|
||||||
|
printf "%b\n" "${GREEN}linux-neptune detected. Skipping installation.${RC}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /etc/default/grub ]; then
|
||||||
|
printf "%b\n" "${CYAN}Updating GRUB...${RC}"
|
||||||
|
if ! grep -q '^UPDATEDEFAULT=' /etc/default/grub; then
|
||||||
|
echo 'UPDATEDEFAULT=yes' | "$ESCALATION_TOOL" tee -a /etc/default/grub
|
||||||
|
else
|
||||||
|
"$ESCALATION_TOOL" sed -i 's/^UPDATEDEFAULT=.*/UPDATEDEFAULT=yes/' /etc/default/grub
|
||||||
|
fi
|
||||||
|
if [ -f /boot/grub/grub.cfg ]; then
|
||||||
|
"$ESCALATION_TOOL" grub-mkconfig -o /boot/grub/grub.cfg
|
||||||
|
else
|
||||||
|
printf "%b\n" "${RED}GRUB configuration file not found. Run grub-mkconfig manually.${RC}"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
printf "%b\n" "${RED}GRUB not detected. Manually set your bootloader to use linux-neptune.${RC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
copyFirmwareFiles() {
|
||||||
|
printf "%b\n" "${CYAN}Copying firmware files...${RC}"
|
||||||
|
"$ESCALATION_TOOL" mkdir -p /usr/lib/firmware/cirrus
|
||||||
|
"$ESCALATION_TOOL" cp /usr/lib/firmware/cs35l41-dsp1-spk-cali.bin /usr/lib/firmware/cirrus/
|
||||||
|
"$ESCALATION_TOOL" cp /usr/lib/firmware/cs35l41-dsp1-spk-cali.wmfw /usr/lib/firmware/cirrus/
|
||||||
|
"$ESCALATION_TOOL" cp /usr/lib/firmware/cs35l41-dsp1-spk-prot.bin /usr/lib/firmware/cirrus/
|
||||||
|
"$ESCALATION_TOOL" cp /usr/lib/firmware/cs35l41-dsp1-spk-prot.wmfw /usr/lib/firmware/cirrus/
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
checkEscalationTool
|
||||||
|
setUpRepos
|
||||||
|
installKernel
|
||||||
|
copyFirmwareFiles
|
120
core/tabs/system-setup/arch/nvidia-drivers.sh
Executable file
120
core/tabs/system-setup/arch/nvidia-drivers.sh
Executable file
|
@ -0,0 +1,120 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ../../common-script.sh
|
||||||
|
|
||||||
|
LIBVA_DIR="$HOME/.local/share/linutil/libva"
|
||||||
|
MPV_CONF="$HOME/.config/mpv/mpv.conf"
|
||||||
|
|
||||||
|
installDeps() {
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm base-devel dkms ninja meson git
|
||||||
|
|
||||||
|
installed_kernels=$("$PACKAGER" -Q | grep -E '^linux(| |-rt|-rt-lts|-hardened|-zen|-lts)[^-headers]' | cut -d ' ' -f 1)
|
||||||
|
|
||||||
|
for kernel in $installed_kernels; do
|
||||||
|
header="${kernel}-headers"
|
||||||
|
printf "%b\n" "${CYAN}Installing headers for $kernel...${RC}"
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm "$header"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
checkNvidiaHardware() {
|
||||||
|
# Refer https://nouveau.freedesktop.org/CodeNames.html for model code names
|
||||||
|
model=$(lspci -k | grep -A 2 -E "(VGA|3D)" | grep NVIDIA | sed 's/.*Corporation //;s/ .*//' | cut -c 1-2)
|
||||||
|
case "$model" in
|
||||||
|
GM | GP | GV) return 1 ;;
|
||||||
|
TU | GA | AD) return 0 ;;
|
||||||
|
*) printf "%b\n" "${RED}Unsupported hardware." && exit 1 ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
checkIntelHardware() {
|
||||||
|
model=$(grep "model name" /proc/cpuinfo | head -n 1 | cut -d ':' -f 2 | cut -c 2-3)
|
||||||
|
[ "$model" -ge 11 ]
|
||||||
|
}
|
||||||
|
|
||||||
|
promptUser() {
|
||||||
|
printf "%b" "Do you want to $1 ? [y/N]:"
|
||||||
|
read -r confirm
|
||||||
|
[ "$confirm" = "y" ] || [ "$confirm" = "Y" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
setKernelParam() {
|
||||||
|
PARAMETER="$1"
|
||||||
|
|
||||||
|
if grep -q "$PARAMETER" /etc/default/grub; then
|
||||||
|
printf "%b\n" "${YELLOW}NVIDIA modesetting is already enabled in GRUB.${RC}"
|
||||||
|
else
|
||||||
|
"$ESCALATION_TOOL" sed -i "/^GRUB_CMDLINE_LINUX_DEFAULT=/ s/\"$/ $PARAMETER\"/" /etc/default/grub
|
||||||
|
printf "%b\n" "${CYAN}Added $PARAMETER to /etc/default/grub.${RC}"
|
||||||
|
"$ESCALATION_TOOL" grub-mkconfig -o /boot/grub/grub.cfg
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
setupHardwareAcceleration() {
|
||||||
|
if ! command_exists grub-mkconfig; then
|
||||||
|
printf "%b\n" "${RED}Currently hardware acceleration is only available with GRUB.${RC}"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm libva-nvidia-driver
|
||||||
|
|
||||||
|
mkdir -p "$HOME/.local/share/linutil"
|
||||||
|
if [ -d "$LIBVA_DIR" ]; then
|
||||||
|
rm -rf "$LIBVA_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf "%b\n" "${YELLOW}Cloning libva from https://github.com/intel/libva in ${LIBVA_DIR}${RC}"
|
||||||
|
git clone --branch=v2.22-branch --depth=1 https://github.com/intel/libva "$LIBVA_DIR"
|
||||||
|
|
||||||
|
mkdir -p "$LIBVA_DIR/build"
|
||||||
|
cd "$LIBVA_DIR/build" && arch-meson .. -Dwith_legacy=nvctrl && ninja
|
||||||
|
"$ESCALATION_TOOL" ninja install
|
||||||
|
|
||||||
|
"$ESCALATION_TOOL" sed -i '/^MOZ_DISABLE_RDD_SANDBOX/d' "/etc/environment"
|
||||||
|
"$ESCALATION_TOOL" sed -i '/^LIBVA_DRIVER_NAME/d' "/etc/environment"
|
||||||
|
|
||||||
|
printf "LIBVA_DRIVER_NAME=nvidia\nMOZ_DISABLE_RDD_SANDBOX=1" | "$ESCALATION_TOOL" tee -a /etc/environment >/dev/null
|
||||||
|
|
||||||
|
printf "%b\n" "${GREEN}Hardware Acceleration setup completed successfully.${RC}"
|
||||||
|
|
||||||
|
if promptUser "enable Hardware Acceleration in MPV player"; then
|
||||||
|
mkdir -p "$HOME/.config/mpv"
|
||||||
|
if [ -f "$MPV_CONF" ]; then
|
||||||
|
sed -i '/^hwdec/d' "$MPV_CONF"
|
||||||
|
fi
|
||||||
|
printf "hwdec=auto" | tee -a "$MPV_CONF" >/dev/null
|
||||||
|
printf "%b\n" "${GREEN}MPV Hardware Acceleration enabled successfully.${RC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
installDriver() {
|
||||||
|
# Refer https://wiki.archlinux.org/title/NVIDIA for open-dkms or dkms driver selection
|
||||||
|
if checkNvidiaHardware && promptUser "install nvidia's open source drivers"; then
|
||||||
|
printf "%b\n" "${YELLOW}Installing nvidia open source driver...${RC}"
|
||||||
|
installDeps
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm nvidia-open-dkms nvidia-utils
|
||||||
|
else
|
||||||
|
printf "%b\n" "${YELLOW}Installing nvidia proprietary driver...${RC}"
|
||||||
|
installDeps
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm nvidia-dkms nvidia-utils
|
||||||
|
fi
|
||||||
|
|
||||||
|
if checkIntelHardware; then
|
||||||
|
setKernelParam "ibt=off"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Refer https://wiki.archlinux.org/title/NVIDIA/Tips_and_tricks#Preserve_video_memory_after_suspend
|
||||||
|
setKernelParam "nvidia.NVreg_PreserveVideoMemoryAllocations=1"
|
||||||
|
"$ESCALATION_TOOL" systemctl enable nvidia-suspend.service nvidia-hibernate.service nvidia-resume.service
|
||||||
|
|
||||||
|
printf "%b\n" "${GREEN}Driver installed successfully.${RC}"
|
||||||
|
if promptUser "setup Hardware Acceleration"; then
|
||||||
|
setupHardwareAcceleration
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf "%b\n" "${GREEN}Please reboot your system for the changes to take effect.${RC}"
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
checkEscalationTool
|
||||||
|
installDriver
|
168
core/tabs/system-setup/fedora/fedora-btrfs-assistant.sh
Normal file
168
core/tabs/system-setup/fedora/fedora-btrfs-assistant.sh
Normal file
|
@ -0,0 +1,168 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ../../common-script.sh
|
||||||
|
|
||||||
|
# This script automates the installation and root and home snapshot configuration of Snapper and installs Grub-Btrfs on Fedora.
|
||||||
|
# Also installs python3-dnf-plugin-snapper package for automatic snapshots after dnf commands.
|
||||||
|
|
||||||
|
# Install Btrfs-Assistant/snapper and dependencies
|
||||||
|
installBtrfsStack() {
|
||||||
|
if ! command_exists btrfs-assistant; then
|
||||||
|
printf "%b\n" "${YELLOW}==========================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Installing Btrfs Assistant with snapper...${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}==========================================${RC}"
|
||||||
|
case "$PACKAGER" in
|
||||||
|
dnf)
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y btrfs-assistant python3-dnf-plugin-snapper
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Unsupported package manager: ""$PACKAGER""${RC}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
printf "%b\n" "${GREEN}Btrfs Assistant is already installed.${RC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Create first snapper config for root and home and create new manual snapshots
|
||||||
|
configureSnapper() {
|
||||||
|
printf "%b\n" "${YELLOW}===========================================================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Creating snapper root(/) and /home config and taking the first snapshots...${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}===========================================================================${RC}"
|
||||||
|
"$ESCALATION_TOOL" snapper -c home create-config /home && "$ESCALATION_TOOL" snapper -c home create --description "First home Snapshot"
|
||||||
|
"$ESCALATION_TOOL" snapper -c root create-config / && "$ESCALATION_TOOL" snapper -c root create --description "First root Snapshot"
|
||||||
|
printf "%b\n" "${YELLOW}Updating timeline settings...${RC}"
|
||||||
|
# Modifyling default timeline root config
|
||||||
|
"$ESCALATION_TOOL" sed -i'' '
|
||||||
|
s/^TIMELINE_LIMIT_HOURLY="[^"]*"/TIMELINE_LIMIT_HOURLY="1"/;
|
||||||
|
s/^TIMELINE_LIMIT_DAILY="[^"]*"/TIMELINE_LIMIT_DAILY="2"/;
|
||||||
|
s/^TIMELINE_LIMIT_WEEKLY="[^"]*"/TIMELINE_LIMIT_WEEKLY="1"/;
|
||||||
|
s/^TIMELINE_LIMIT_MONTHLY="[^"]*"/TIMELINE_LIMIT_MONTHLY="0"/;
|
||||||
|
s/^TIMELINE_LIMIT_YEARLY="[^"]*"/TIMELINE_LIMIT_YEARLY="0"/
|
||||||
|
' /etc/snapper/configs/root
|
||||||
|
# Modifyling default timeline for home config
|
||||||
|
"$ESCALATION_TOOL" sed -i'' '
|
||||||
|
s/^TIMELINE_LIMIT_HOURLY="[^"]*"/TIMELINE_LIMIT_HOURLY="2"/;
|
||||||
|
s/^TIMELINE_LIMIT_DAILY="[^"]*"/TIMELINE_LIMIT_DAILY="1"/;
|
||||||
|
s/^TIMELINE_LIMIT_WEEKLY="[^"]*"/TIMELINE_LIMIT_WEEKLY="0"/;
|
||||||
|
s/^TIMELINE_LIMIT_MONTHLY="[^"]*"/TIMELINE_LIMIT_MONTHLY="1"/;
|
||||||
|
s/^TIMELINE_LIMIT_YEARLY="[^"]*"/TIMELINE_LIMIT_YEARLY="0"/
|
||||||
|
' /etc/snapper/configs/home
|
||||||
|
printf "%b\n" "${GREEN}Snapper configs and first snapshots created.${RC}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Starting services
|
||||||
|
serviceStartEnable() {
|
||||||
|
printf "%b\n" "${YELLOW}==================================================================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Starting and enabling snapper-timeline.timer and snapper-cleanup.timer services...${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}==================================================================================${RC}"
|
||||||
|
"$ESCALATION_TOOL" systemctl enable --now snapper-timeline.timer
|
||||||
|
"$ESCALATION_TOOL" systemctl enable --now snapper-cleanup.timer
|
||||||
|
printf "%b\n" "${GREEN}Snapper services started and enabled.${RC}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Ask user if they want to install grub-btrfs
|
||||||
|
askInstallGrubBtrfs() {
|
||||||
|
printf "%b\n" "${YELLOW}=====================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}(optional) grub-btrfs installation...${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}=====================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}You can skip installing grub-btrfs and use only Btrfs Assistant GUI or snapper CLI.${RC}"
|
||||||
|
printf "%b\n" "${CYAN}Notice: grub-btrfs may cause problems with booting into snapshots and other OSes on systems with secure boot/tpm. You will be asked to apply mitigation for this issue in next step.${RC}"
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
printf "%b" "${YELLOW}Do you want to install grub-btrfs? Press (y) for yes, (n) for no, (f) to apply tpm mitigation to already installed grub-btrfs: ${RC}"
|
||||||
|
read -r response
|
||||||
|
case "$response" in
|
||||||
|
[yY]*)
|
||||||
|
installGrubBtrfs
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
[nN]*)
|
||||||
|
printf "%b\n" "${GREEN}Skipping grub-btrfs installation.${RC}"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
[fF]*)
|
||||||
|
mitigateTpmError
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Invalid input. Please enter 'y' for yes, 'n' for no, or (f) to apply tpm mitigation to already installed grub-btrfs.${RC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
# Install grub-btrfs
|
||||||
|
installGrubBtrfs() {
|
||||||
|
# Check if the grub-btrfs dir exists before attempting to clone into it.
|
||||||
|
printf "%b\n" "${YELLOW}Downloading grub-btrfs and installing dependencies...${RC}"
|
||||||
|
if [ -d "$HOME/grub-btrfs" ]; then
|
||||||
|
rm -rf "$HOME/grub-btrfs"
|
||||||
|
fi
|
||||||
|
"$ESCALATION_TOOL" "$PACKAGER" install -y make git inotify-tools
|
||||||
|
cd "$HOME" && git clone https://github.com/Antynea/grub-btrfs
|
||||||
|
printf "%b\n" "${YELLOW}Installing grub-btrfs...${RC}"
|
||||||
|
cd "$HOME/grub-btrfs"
|
||||||
|
printf "%b\n" "${YELLOW}Modifying grub-btrfs configuration for Fedora...${RC}"
|
||||||
|
sed -i'' '/#GRUB_BTRFS_SNAPSHOT_KERNEL/a GRUB_BTRFS_SNAPSHOT_KERNEL_PARAMETERS="systemd.volatile=state"' config
|
||||||
|
sed -i'' '/#GRUB_BTRFS_GRUB_DIRNAME/a GRUB_BTRFS_GRUB_DIRNAME="/boot/grub2"' config
|
||||||
|
sed -i'' '/#GRUB_BTRFS_MKCONFIG=/a GRUB_BTRFS_MKCONFIG=/sbin/grub2-mkconfig' config
|
||||||
|
sed -i'' '/#GRUB_BTRFS_SCRIPT_CHECK=/a GRUB_BTRFS_SCRIPT_CHECK=grub2-script-check' config
|
||||||
|
"$ESCALATION_TOOL" make install
|
||||||
|
printf "%b\n" "${YELLOW}Updating grub configuration and enabling grub-btrfsd service...${RC}"
|
||||||
|
"$ESCALATION_TOOL" grub2-mkconfig -o /boot/grub2/grub.cfg && "$ESCALATION_TOOL" systemctl enable --now grub-btrfsd.service
|
||||||
|
printf "%b\n" "${YELLOW}Cleaning up installation files...${RC}"
|
||||||
|
cd .. && rm -rf "$HOME/grub-btrfs"
|
||||||
|
printf "%b\n" "${GREEN}Grub-btrfs installed and service enabled.${RC}"
|
||||||
|
printf "%b\n" "${CYAN}Notice: To perform a system recovery via grub-btrfs, perform a restore operation with Btrfs Assistant GUI after booting into the snapshot.${RC}"
|
||||||
|
mitigateTpmError
|
||||||
|
}
|
||||||
|
|
||||||
|
mitigateTpmError() {
|
||||||
|
printf "%b\n" "${YELLOW}===============================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Mitigation for 'tpm.c:150:unknown TPM error'...${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}===============================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Some systems with secure boot/tpm may encounter 'tpm.c:150:unknown TPM error' when booting into snapshots.${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}If you encounter this issue, you can come back later and apply this mitigation or you can apply it now.${RC}"
|
||||||
|
while true; do
|
||||||
|
printf "%b\n" "${YELLOW}Do you want to apply the TPM error mitigation? (y/n): ${RC}"
|
||||||
|
read -r response
|
||||||
|
case "$response" in
|
||||||
|
[yY]*)
|
||||||
|
printf "%b\n" "${YELLOW}Creating /etc/grub.d/02_tpm file...${RC}"
|
||||||
|
echo '#!/bin/sh' | "$ESCALATION_TOOL" tee /etc/grub.d/02_tpm > /dev/null
|
||||||
|
echo 'echo "rmmod tpm"' | "$ESCALATION_TOOL" tee -a /etc/grub.d/02_tpm > /dev/null
|
||||||
|
"$ESCALATION_TOOL" chmod +x /etc/grub.d/02_tpm # makes the file executable
|
||||||
|
"$ESCALATION_TOOL" grub2-mkconfig -o /boot/grub2/grub.cfg # updates grub config
|
||||||
|
printf "%b\n" "${GREEN}Mitigation applied and grub config updated.${RC}"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
[nN]*)
|
||||||
|
printf "%b\n" "${GREEN}Skipping TPM error mitigation.${RC}"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Invalid input. Please enter 'y' for yes or 'n' for no.${RC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
# Post install information
|
||||||
|
someNotices() {
|
||||||
|
printf "%b\n" "${YELLOW}================================NOTICES================================${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Notice: You can manage snapshots from GUI with Btrfs Assistant or CLI with snapper.${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}Notice: You may change (Hourly, daily, weekly, monthly, yearly) timeline settings with Btrfs Assistant GUI.${RC}"
|
||||||
|
printf "%b\n" "${RED}Notice: If you used the default Fedora disk partitioning during OS installation, the /boot configured as an separate EXT4 partition. Therefore, it cannot be included in root snapshots. Backup separately...${RC}"
|
||||||
|
printf "%b\n" "${YELLOW}================================NOTICES================================${RC}"
|
||||||
|
printf "%b\n" "${GREEN}Setup process completed.${RC}"
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
checkEscalationTool
|
||||||
|
installBtrfsStack
|
||||||
|
configureSnapper
|
||||||
|
serviceStartEnable
|
||||||
|
askInstallGrubBtrfs
|
||||||
|
someNotices
|
|
@ -15,15 +15,32 @@ script = "arch/server-setup.sh"
|
||||||
task_list = "SI D"
|
task_list = "SI D"
|
||||||
multi_select = false
|
multi_select = false
|
||||||
|
|
||||||
|
[[data.entries]]
|
||||||
|
name ="Linux Neptune for SteamDeck"
|
||||||
|
description = "Valve's fork of Linux Kernel for the SteamDeck"
|
||||||
|
script = "arch/linux-neptune.sh"
|
||||||
|
task_list = "I PFM K"
|
||||||
|
|
||||||
|
[[data.entries.preconditions]]
|
||||||
|
matches = true
|
||||||
|
data = { file = "/sys/devices/virtual/dmi/id/board_vendor" }
|
||||||
|
values = [ "Valve" ]
|
||||||
|
|
||||||
|
[[data.entries]]
|
||||||
|
name = "Nvidia Drivers && Hardware Acceleration"
|
||||||
|
description = "This script installs and configures nvidia drivers with Hardware Acceleration."
|
||||||
|
script = "arch/nvidia-drivers.sh"
|
||||||
|
task_list = "I FM SS"
|
||||||
|
|
||||||
[[data.entries]]
|
[[data.entries]]
|
||||||
name = "Paru AUR Helper"
|
name = "Paru AUR Helper"
|
||||||
description = "Paru is your standard pacman wrapping AUR helper with lots of features and minimal interaction.\nTo know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers"
|
description = "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"
|
||||||
script = "arch/paru-setup.sh"
|
script = "arch/paru-setup.sh"
|
||||||
task_list = "I"
|
task_list = "I"
|
||||||
|
|
||||||
[[data.entries]]
|
[[data.entries]]
|
||||||
name = "Yay AUR Helper"
|
name = "Yay AUR Helper"
|
||||||
description = "Yet Another Yogurt - An AUR Helper Written in Go.\nTo know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers"
|
description = "Yet Another Yogurt - An AUR Helper Written in Go. To know more about AUR helpers visit: https://wiki.archlinux.org/title/AUR_helpers"
|
||||||
script = "arch/yay-setup.sh"
|
script = "arch/yay-setup.sh"
|
||||||
task_list = "I"
|
task_list = "I"
|
||||||
|
|
||||||
|
@ -55,7 +72,7 @@ task_list = "I"
|
||||||
|
|
||||||
[[data.entries]]
|
[[data.entries]]
|
||||||
name = "RPM Fusion"
|
name = "RPM Fusion"
|
||||||
description = "RPM Fusion provides software that the Fedora Project or Red Hat doesn't want to ship.\nThat 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.\nFor more information visit: https://rpmfusion.org/"
|
description = "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/"
|
||||||
script = "fedora/rpm-fusion-setup.sh"
|
script = "fedora/rpm-fusion-setup.sh"
|
||||||
task_list = "MP"
|
task_list = "MP"
|
||||||
|
|
||||||
|
@ -71,6 +88,17 @@ description = "Enables Virtualization through dnf"
|
||||||
script = "fedora/virtualization.sh"
|
script = "fedora/virtualization.sh"
|
||||||
task_list = "I"
|
task_list = "I"
|
||||||
|
|
||||||
|
[[data.entries]]
|
||||||
|
name = "Btrfs Assistant, Snapper Config, grub-btrfs"
|
||||||
|
description = "Installs Btrfs Assistant, Snapper, dnf snapper plugin and takes the first root(/) and /home snapshots. Enables snapper-timeline and snapper-cleanup services. Installs Grub-Btrfs. Notice: To perform a system recovery via grub-btrfs, perform a restore operation with Btrfs Assistant GUI after booting into the snapshot. Notice: If you used the default Fedora disk partitioning during OS installation, the /boot configured as an separate EXT4 partition. Therefore, it cannot be included in root snapshots. Backup separately."
|
||||||
|
script = "fedora/fedora-btrfs-assistant.sh"
|
||||||
|
task_list = "I PFM SS"
|
||||||
|
|
||||||
|
[[data.preconditions]]
|
||||||
|
matches = true
|
||||||
|
data = "command_exists"
|
||||||
|
values = [ "btrfs" ]
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Build Prerequisites"
|
name = "Build Prerequisites"
|
||||||
description = "This script is designed to handle the installation of various software dependencies across different Linux distributions"
|
description = "This script is designed to handle the installation of various software dependencies across different Linux distributions"
|
||||||
|
|
|
@ -2,11 +2,6 @@
|
||||||
|
|
||||||
. ../common-script.sh
|
. ../common-script.sh
|
||||||
|
|
||||||
# setleds can be used in all distros
|
|
||||||
# This method works by calling a script using systemd service
|
|
||||||
|
|
||||||
# Create a script to toggle numlock
|
|
||||||
|
|
||||||
create_file() {
|
create_file() {
|
||||||
printf "%b\n" "Creating script..."
|
printf "%b\n" "Creating script..."
|
||||||
"$ESCALATION_TOOL" tee "/usr/local/bin/numlock" >/dev/null <<'EOF'
|
"$ESCALATION_TOOL" tee "/usr/local/bin/numlock" >/dev/null <<'EOF'
|
||||||
|
@ -21,7 +16,6 @@ EOF
|
||||||
"$ESCALATION_TOOL" chmod +x /usr/local/bin/numlock
|
"$ESCALATION_TOOL" chmod +x /usr/local/bin/numlock
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create a systemd service to run the script on boot
|
|
||||||
create_service() {
|
create_service() {
|
||||||
printf "%b\n" "Creating service..."
|
printf "%b\n" "Creating service..."
|
||||||
"$ESCALATION_TOOL" tee "/etc/systemd/system/numlock.service" >/dev/null <<'EOF'
|
"$ESCALATION_TOOL" tee "/etc/systemd/system/numlock.service" >/dev/null <<'EOF'
|
||||||
|
@ -39,7 +33,6 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
numlockSetup() {
|
numlockSetup() {
|
||||||
# Check if the script and service files exists
|
|
||||||
if [ ! -f "/usr/local/bin/numlock" ]; then
|
if [ ! -f "/usr/local/bin/numlock" ]; then
|
||||||
create_file
|
create_file
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -136,7 +136,7 @@ task_list = "I FM"
|
||||||
|
|
||||||
[[data]]
|
[[data]]
|
||||||
name = "Numlock on Startup"
|
name = "Numlock on Startup"
|
||||||
description = "This utility is designed to configure auto enabling of numlock on boot"
|
description = "This utility is designed to enable Num Lock at boot, rather than within desktop environments like KDE or GNOME"
|
||||||
script = "numlock.sh"
|
script = "numlock.sh"
|
||||||
task_list = "PFM SS"
|
task_list = "PFM SS"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
# Known Issues
|
|
||||||
---
|
|
||||||
|
|
||||||
- [Known Issues](https://github.com/ChrisTitusTech/linutil/issues)
|
|
Binary file not shown.
Before Width: | Height: | Size: 9.6 KiB |
|
@ -1,89 +0,0 @@
|
||||||
# VHS documentation
|
|
||||||
#
|
|
||||||
# Output:
|
|
||||||
# Output <path>.gif Create a GIF output at the given <path>
|
|
||||||
# Output <path>.mp4 Create an MP4 output at the given <path>
|
|
||||||
# Output <path>.webm Create a WebM output at the given <path>
|
|
||||||
#
|
|
||||||
# Require:
|
|
||||||
# Require <string> Ensure a program is on the $PATH to proceed
|
|
||||||
#
|
|
||||||
# Settings:
|
|
||||||
# Set FontSize <number> Set the font size of the terminal
|
|
||||||
# Set FontFamily <string> Set the font family of the terminal
|
|
||||||
# Set Height <number> Set the height of the terminal
|
|
||||||
# Set Width <number> Set the width of the terminal
|
|
||||||
# Set LetterSpacing <float> Set the font letter spacing (tracking)
|
|
||||||
# Set LineHeight <float> Set the font line height
|
|
||||||
# Set LoopOffset <float>% Set the starting frame offset for the GIF loop
|
|
||||||
# Set Theme <json|string> Set the theme of the terminal
|
|
||||||
# Set Padding <number> Set the padding of the terminal
|
|
||||||
# Set Framerate <number> Set the framerate of the recording
|
|
||||||
# Set PlaybackSpeed <float> Set the playback speed of the recording
|
|
||||||
# Set MarginFill <file|#000000> Set the file or color the margin will be filled with.
|
|
||||||
# Set Margin <number> Set the size of the margin. Has no effect if MarginFill isn't set.
|
|
||||||
# Set BorderRadius <number> Set terminal border radius, in pixels.
|
|
||||||
# Set WindowBar <string> Set window bar type. (one of: Rings, RingsRight, Colorful, ColorfulRight)
|
|
||||||
# Set WindowBarSize <number> Set window bar size, in pixels. Default is 40.
|
|
||||||
# Set TypingSpeed <time> Set the typing speed of the terminal. Default is 50ms.
|
|
||||||
#
|
|
||||||
# Sleep:
|
|
||||||
# Sleep <time> Sleep for a set amount of <time> in seconds
|
|
||||||
#
|
|
||||||
# Type:
|
|
||||||
# Type[@<time>] "<characters>" Type <characters> into the terminal with a
|
|
||||||
# <time> delay between each character
|
|
||||||
#
|
|
||||||
# Keys:
|
|
||||||
# Escape[@<time>] [number] Press the Escape key
|
|
||||||
# Backspace[@<time>] [number] Press the Backspace key
|
|
||||||
# Delete[@<time>] [number] Press the Delete key
|
|
||||||
# Insert[@<time>] [number] Press the Insert key
|
|
||||||
# Down[@<time>] [number] Press the Down key
|
|
||||||
# Enter[@<time>] [number] Press the Enter key
|
|
||||||
# Space[@<time>] [number] Press the Space key
|
|
||||||
# Tab[@<time>] [number] Press the Tab key
|
|
||||||
# Left[@<time>] [number] Press the Left Arrow key
|
|
||||||
# Right[@<time>] [number] Press the Right Arrow key
|
|
||||||
# Up[@<time>] [number] Press the Up Arrow key
|
|
||||||
# Down[@<time>] [number] Press the Down Arrow key
|
|
||||||
# PageUp[@<time>] [number] Press the Page Up key
|
|
||||||
# PageDown[@<time>] [number] Press the Page Down key
|
|
||||||
# Ctrl+<key> Press the Control key + <key> (e.g. Ctrl+C)
|
|
||||||
#
|
|
||||||
# Display:
|
|
||||||
# Hide Hide the subsequent commands from the output
|
|
||||||
# Show Show the subsequent commands in the output
|
|
||||||
|
|
||||||
Output preview.gif
|
|
||||||
|
|
||||||
Require linutil
|
|
||||||
Require sh
|
|
||||||
|
|
||||||
Set Shell "bash"
|
|
||||||
Set FontFamily "JetBrainsMono Nerd Font"
|
|
||||||
Set FontSize 24
|
|
||||||
Set Width 1920
|
|
||||||
Set Height 1080
|
|
||||||
|
|
||||||
Sleep 1s
|
|
||||||
|
|
||||||
Type "linutil" Sleep 1s Enter
|
|
||||||
|
|
||||||
Sleep 5s
|
|
||||||
|
|
||||||
Left Sleep 2s
|
|
||||||
Down Sleep 1s
|
|
||||||
Down Sleep 1s
|
|
||||||
Down Sleep 1s
|
|
||||||
Down Sleep 2s
|
|
||||||
Right Sleep 3s
|
|
||||||
|
|
||||||
Type "/" Sleep 1s
|
|
||||||
Type@200ms "System Cleanup" Sleep 1s Enter
|
|
||||||
|
|
||||||
Sleep 2s
|
|
||||||
Enter Sleep 3s
|
|
||||||
Type "y" Sleep 15s # CONFIRMATION PROMPT
|
|
||||||
|
|
||||||
Escape
|
|
|
@ -1,72 +0,0 @@
|
||||||
<!-- THIS FILE IS GENERATED AUTOMATICALLY. EDIT .github/CONTRIBUTING.md -->
|
|
||||||
|
|
||||||
# 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](https://www.rust-lang.org/tools/install).
|
|
||||||
|
|
||||||
## 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.
|
|
||||||
- **Automatic generation**: If you decide to add functionality through a new shell script, make sure to fill out all fields in `tab_data.toml` and run `cargo xtask docgen`.
|
|
||||||
|
|
||||||
## 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!
|
|
|
@ -1,4 +0,0 @@
|
||||||
# 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.
|
|
|
@ -1,76 +0,0 @@
|
||||||
# Welcome to the LinUtil Documentation!
|
|
||||||
|
|
||||||
[![Version](https://img.shields.io/github/v/release/ChrisTitusTech/linutil?color=%230567ff&label=Latest%20Release&style=for-the-badge)](https://github.com/ChrisTitusTech/linutil/releases/latest)
|
|
||||||
![GitHub Downloads (specific asset, all releases)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/linutil?label=Total%20Downloads&style=for-the-badge)
|
|
||||||
[![](https://dcbadge.limes.pink/api/server/https://discord.gg/bujFYKAHSp)](https://discord.gg/bujFYKAHSp)
|
|
||||||
|
|
||||||
[![Crates.io Version](https://img.shields.io/crates/v/linutil_tui?style=for-the-badge&color=%23af3a03)](https://crates.io/crates/linutil_tui) [![linutil AUR Version](https://img.shields.io/aur/version/linutil?style=for-the-badge&label=%5BAUR%5D%20linutil&color=%23230567ff)](https://aur.archlinux.org/packages/linutil) [![linutil-bin AUR Version](https://img.shields.io/aur/version/linutil-bin?style=for-the-badge&label=%5BAUR%5D%20linutil-bin&color=%23230567ff)](https://aur.archlinux.org/packages/linutil-bin)
|
|
||||||
|
|
||||||
## 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](https://repology.org/badge/vertical-allrepos/linutil.svg)](https://repology.org/project/linutil/versions)
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Arch Linux</summary>
|
|
||||||
|
|
||||||
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:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone https://aur.archlinux.org/<package>.git
|
|
||||||
cd linutil
|
|
||||||
makepkg -si
|
|
||||||
```
|
|
||||||
|
|
||||||
Replace `<package>` 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:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
paru -S linutil
|
|
||||||
```
|
|
||||||
|
|
||||||
Replace `paru` with your preferred helper and `linutil` with your preferred package.
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Cargo</summary>
|
|
||||||
|
|
||||||
LinUtil can be installed via [Cargo](https://doc.rust-lang.org/cargo) with:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
cargo install linutil
|
|
||||||
```
|
|
||||||
|
|
||||||
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))
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
After you've ran the command, you should see a GUI on your screen; It will look something like this:
|
|
||||||
|
|
||||||
![preview](assets/preview.gif)
|
|
||||||
|
|
||||||
!!! 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.
|
|
|
@ -1,27 +0,0 @@
|
||||||
# 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.)
|
|
||||||
- [x] 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)
|
|
||||||
- [x] Create a discord server for linutil and invite the community.
|
|
||||||
- [x] Power Optimizations for Laptops
|
|
||||||
|
|
||||||
## Milestones
|
|
||||||
### Q4 2024
|
|
||||||
- [x] Finish the foundation of the project's CLI
|
|
||||||
- [ ] Implement CLI arguments and configuration support
|
|
||||||
- [ ] Add an option for logging script executions
|
|
||||||
|
|
||||||
### Q1 2025
|
|
||||||
- [ ] GUI Brainstorming and Planning
|
|
||||||
- [ ] Basic GUI Implementation
|
|
||||||
|
|
||||||
### Q2 2025
|
|
||||||
- [ ] Full GUI Implementation
|
|
||||||
|
|
||||||
## Community Feedback
|
|
||||||
- Encourage community input and suggestions for future development.
|
|
|
@ -1,154 +0,0 @@
|
||||||
<!-- THIS FILE IS GENERATED BY cargo xtask docgen -->
|
|
||||||
# Walkthrough
|
|
||||||
|
|
||||||
## Applications Setup
|
|
||||||
|
|
||||||
|
|
||||||
### 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.
|
|
||||||
- **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.
|
|
||||||
- **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.
|
|
||||||
|
|
||||||
### 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.
|
|
||||||
- **JetBrains Toolbox**: JetBrains Toolbox is a collection of tools and an app that help developers work with JetBrains products.
|
|
||||||
- **Meld**: Meld is a visual diff and merge tool that helps compare files, directories, and version-controlled projects.
|
|
||||||
- **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
|
|
||||||
- **Ngrok**: Ngrok is a tool that creates secure, temporary tunnels to expose local servers to the internet for testing and development.
|
|
||||||
- **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.
|
|
||||||
|
|
||||||
### 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.
|
|
||||||
- **waterfox**: Waterfox is the privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet.
|
|
||||||
- **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.
|
|
||||||
- **Docker**: Docker is an open platform that uses OS-level virtualization to deliver software in packages called containers.
|
|
||||||
- **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
|
|
||||||
- **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/
|
|
||||||
- **Upgrade to a New Fedora Release**: Upgrades system to the next Fedora release
|
|
||||||
- **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 script is designed to detect and apply recommended configuration for monitors connected with your system
|
|
||||||
- **Change Orientation**: This script is designed to change the orientation of monitors in your system
|
|
||||||
- **Disable Monitor**: This script is designed to disable a monitor in your system
|
|
||||||
- **Duplicate Displays**: This script is designed to duplicate display among multi-monitor setup in your system
|
|
||||||
- **Enable Monitor**: This script is designed to enable a monitor in your system
|
|
||||||
- **Extend Displays**: This script is designed to extend display among multi-monitor setup in your system
|
|
||||||
- **Manage Arrangement**: This script is designed to arrange monitors in multi-monitor setup in your system
|
|
||||||
- **Reset Scaling**: This script is designed to reset scaling of a monitor in your system
|
|
||||||
- **Scale Monitors**: This script is designed to change the scaling of monitors in your system
|
|
||||||
- **Set Brightness**: This script is designed to change the Brightness of monitors connected to your system
|
|
||||||
- **Set Primary Monitor**: This script is designed to set a Primary monitor in your system
|
|
||||||
- **Set Resolution**: This script is designed to change the resolution of monitors connected to 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
|
|
|
@ -36,6 +36,10 @@ Defaults to \fIdefault\fR.
|
||||||
\fB\-\-override\-validation\fR
|
\fB\-\-override\-validation\fR
|
||||||
Show all available entries, disregarding compatibility checks. (\fBUNSAFE\fR)
|
Show all available entries, disregarding compatibility checks. (\fBUNSAFE\fR)
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fB\-\-size\-bypass\fR
|
||||||
|
Bypass the terminal size limit
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-h\fR, \fB\-\-help\fR
|
\fB\-h\fR, \fB\-\-help\fR
|
||||||
Print help.
|
Print help.
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
|
|
||||||
{% block header %}
|
|
||||||
{{ super() }}
|
|
||||||
<div style="color: red; text-align: center; padding: 10px; font-size: 20px;">
|
|
||||||
<strong>Announcement:</strong> This documentation is still in progress.
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block footer %}
|
|
||||||
{# Empty block to override the footer #}
|
|
||||||
{% endblock %}
|
|
|
@ -15,7 +15,6 @@ tips = ["rand"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.5.20", features = ["derive"] }
|
clap = { version = "4.5.20", features = ["derive"] }
|
||||||
crossterm = "0.28.1"
|
|
||||||
ego-tree = { workspace = true }
|
ego-tree = { workspace = true }
|
||||||
oneshot = "0.1.8"
|
oneshot = "0.1.8"
|
||||||
portable-pty = "0.8.1"
|
portable-pty = "0.8.1"
|
||||||
|
@ -27,6 +26,7 @@ rand = { version = "0.8.5", optional = true }
|
||||||
linutil_core = { path = "../core", version = "24.9.28" }
|
linutil_core = { path = "../core", version = "24.9.28" }
|
||||||
tree-sitter-highlight = "0.24.3"
|
tree-sitter-highlight = "0.24.3"
|
||||||
tree-sitter-bash = "0.23.1"
|
tree-sitter-bash = "0.23.1"
|
||||||
|
textwrap = "0.16.1"
|
||||||
anstyle = "1.0.8"
|
anstyle = "1.0.8"
|
||||||
ansi-to-tui = "7.0.0"
|
ansi-to-tui = "7.0.0"
|
||||||
zips = "0.1.7"
|
zips = "0.1.7"
|
||||||
|
|
|
@ -2,8 +2,8 @@ use std::borrow::Cow;
|
||||||
|
|
||||||
use crate::{float::FloatContent, hint::Shortcut};
|
use crate::{float::FloatContent, hint::Shortcut};
|
||||||
|
|
||||||
use crossterm::event::{KeyCode, KeyEvent};
|
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
|
crossterm::event::{KeyCode, KeyEvent},
|
||||||
layout::Alignment,
|
layout::Alignment,
|
||||||
prelude::*,
|
prelude::*,
|
||||||
widgets::{Block, Borders, Clear, List},
|
widgets::{Block, Borders, Clear, List},
|
||||||
|
@ -60,6 +60,7 @@ impl FloatContent for ConfirmPrompt {
|
||||||
fn draw(&mut self, frame: &mut Frame, area: Rect) {
|
fn draw(&mut self, frame: &mut Frame, area: Rect) {
|
||||||
let block = Block::default()
|
let block = Block::default()
|
||||||
.borders(Borders::ALL)
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.title(" Confirm selections ")
|
.title(" Confirm selections ")
|
||||||
.title_bottom(" [y] to continue, [n] to abort ")
|
.title_bottom(" [y] to continue, [n] to abort ")
|
||||||
.title_alignment(Alignment::Center)
|
.title_alignment(Alignment::Center)
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
use crate::{state::ListEntry, theme::Theme};
|
use crate::{state::ListEntry, theme::Theme};
|
||||||
use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
|
|
||||||
use ego_tree::NodeId;
|
use ego_tree::NodeId;
|
||||||
use linutil_core::Tab;
|
use linutil_core::Tab;
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
|
crossterm::event::{KeyCode, KeyEvent, KeyModifiers},
|
||||||
layout::{Position, Rect},
|
layout::{Position, Rect},
|
||||||
style::{Color, Style},
|
style::{Color, Style},
|
||||||
text::Span,
|
text::Span,
|
||||||
|
@ -123,7 +123,12 @@ impl Filter {
|
||||||
|
|
||||||
//Create the search bar widget
|
//Create the search bar widget
|
||||||
let search_bar = Paragraph::new(display_text)
|
let search_bar = Paragraph::new(display_text)
|
||||||
.block(Block::default().borders(Borders::ALL).title(" Search "))
|
.block(
|
||||||
|
Block::default()
|
||||||
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
|
.title(" Search "),
|
||||||
|
)
|
||||||
.style(Style::default().fg(search_color));
|
.style(Style::default().fg(search_color));
|
||||||
|
|
||||||
//Render the search bar (First chunk of the screen)
|
//Render the search bar (First chunk of the screen)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use crossterm::event::{KeyCode, KeyEvent};
|
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
|
crossterm::event::{KeyCode, KeyEvent},
|
||||||
layout::{Constraint, Direction, Layout, Rect},
|
layout::{Constraint, Direction, Layout, Rect},
|
||||||
Frame,
|
Frame,
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,9 +8,8 @@ use crate::{float::FloatContent, hint::Shortcut};
|
||||||
|
|
||||||
use linutil_core::Command;
|
use linutil_core::Command;
|
||||||
|
|
||||||
use crossterm::event::{KeyCode, KeyEvent};
|
|
||||||
|
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
|
crossterm::event::{KeyCode, KeyEvent},
|
||||||
layout::Rect,
|
layout::Rect,
|
||||||
style::{Style, Stylize},
|
style::{Style, Stylize},
|
||||||
text::Line,
|
text::Line,
|
||||||
|
@ -20,16 +19,19 @@ use ratatui::{
|
||||||
|
|
||||||
use ansi_to_tui::IntoText;
|
use ansi_to_tui::IntoText;
|
||||||
|
|
||||||
|
use textwrap::wrap;
|
||||||
use tree_sitter_bash as hl_bash;
|
use tree_sitter_bash as hl_bash;
|
||||||
use tree_sitter_highlight::{self as hl, HighlightEvent};
|
use tree_sitter_highlight::{self as hl, HighlightEvent};
|
||||||
use zips::zip_result;
|
use zips::zip_result;
|
||||||
|
|
||||||
pub struct FloatingText {
|
pub struct FloatingText {
|
||||||
pub src: Vec<String>,
|
pub src: String,
|
||||||
|
wrapped_lines: Vec<String>,
|
||||||
max_line_width: usize,
|
max_line_width: usize,
|
||||||
v_scroll: usize,
|
v_scroll: usize,
|
||||||
h_scroll: usize,
|
h_scroll: usize,
|
||||||
mode_title: String,
|
mode_title: String,
|
||||||
|
wrap_words: bool,
|
||||||
frame_height: usize,
|
frame_height: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,12 +110,6 @@ fn get_highlighted_string(s: &str) -> Option<String> {
|
||||||
Some(output)
|
Some(output)
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! max_width {
|
|
||||||
($($lines:tt)+) => {{
|
|
||||||
$($lines)+.iter().fold(0, |accum, val| accum.max(val.len()))
|
|
||||||
}}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn get_lines(s: &str) -> Vec<&str> {
|
fn get_lines(s: &str) -> Vec<&str> {
|
||||||
s.lines().collect::<Vec<_>>()
|
s.lines().collect::<Vec<_>>()
|
||||||
|
@ -125,50 +121,49 @@ fn get_lines_owned(s: &str) -> Vec<String> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FloatingText {
|
impl FloatingText {
|
||||||
pub fn new(text: String, title: &str) -> Self {
|
pub fn new(text: String, title: &str, wrap_words: bool) -> Self {
|
||||||
let src = get_lines(&text)
|
let max_line_width = 80;
|
||||||
.into_iter()
|
let wrapped_lines = if wrap_words {
|
||||||
.map(|s| s.to_string())
|
wrap(&text, max_line_width)
|
||||||
.collect::<Vec<_>>();
|
.into_iter()
|
||||||
|
.map(|cow| cow.into_owned())
|
||||||
|
.collect()
|
||||||
|
} else {
|
||||||
|
get_lines_owned(&text)
|
||||||
|
};
|
||||||
|
|
||||||
let max_line_width = max_width!(src);
|
|
||||||
Self {
|
Self {
|
||||||
src,
|
src: text,
|
||||||
|
wrapped_lines,
|
||||||
mode_title: title.to_string(),
|
mode_title: title.to_string(),
|
||||||
max_line_width,
|
max_line_width,
|
||||||
v_scroll: 0,
|
v_scroll: 0,
|
||||||
h_scroll: 0,
|
h_scroll: 0,
|
||||||
|
wrap_words,
|
||||||
frame_height: 0,
|
frame_height: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn from_command(command: &Command, title: String) -> Option<Self> {
|
pub fn from_command(command: &Command, title: String) -> Option<Self> {
|
||||||
let (max_line_width, src) = match command {
|
let src = match command {
|
||||||
Command::Raw(cmd) => {
|
Command::Raw(cmd) => Some(cmd.clone()),
|
||||||
// just apply highlights directly
|
Command::LocalFile { file, .. } => std::fs::read_to_string(file)
|
||||||
(max_width!(get_lines(cmd)), Some(cmd.clone()))
|
.map_err(|_| format!("File not found: {:?}", file))
|
||||||
}
|
.ok(),
|
||||||
Command::LocalFile { file, .. } => {
|
Command::None => None,
|
||||||
// have to read from tmp dir to get cmd src
|
}?;
|
||||||
let raw = std::fs::read_to_string(file)
|
|
||||||
.map_err(|_| format!("File not found: {:?}", file))
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
(max_width!(get_lines(&raw)), Some(raw))
|
let max_line_width = 80;
|
||||||
}
|
let wrapped_lines = get_lines_owned(&get_highlighted_string(&src)?);
|
||||||
|
|
||||||
// If command is a folder, we don't display a preview
|
|
||||||
Command::None => (0usize, None),
|
|
||||||
};
|
|
||||||
|
|
||||||
let src = get_lines_owned(&get_highlighted_string(&src?)?);
|
|
||||||
|
|
||||||
Some(Self {
|
Some(Self {
|
||||||
src,
|
src,
|
||||||
|
wrapped_lines,
|
||||||
mode_title: title,
|
mode_title: title,
|
||||||
max_line_width,
|
max_line_width,
|
||||||
h_scroll: 0,
|
h_scroll: 0,
|
||||||
v_scroll: 0,
|
v_scroll: 0,
|
||||||
|
wrap_words: false,
|
||||||
frame_height: 0,
|
frame_height: 0,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -197,6 +192,20 @@ impl FloatingText {
|
||||||
self.h_scroll += 1;
|
self.h_scroll += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn update_wrapping(&mut self, width: usize) {
|
||||||
|
if self.max_line_width != width {
|
||||||
|
self.max_line_width = width;
|
||||||
|
self.wrapped_lines = if self.wrap_words {
|
||||||
|
wrap(&self.src, width)
|
||||||
|
.into_iter()
|
||||||
|
.map(|cow| cow.into_owned())
|
||||||
|
.collect()
|
||||||
|
} else {
|
||||||
|
get_lines_owned(&get_highlighted_string(&self.src).unwrap_or(self.src.clone()))
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FloatContent for FloatingText {
|
impl FloatContent for FloatingText {
|
||||||
|
@ -206,6 +215,7 @@ impl FloatContent for FloatingText {
|
||||||
// Define the Block with a border and background color
|
// Define the Block with a border and background color
|
||||||
let block = Block::default()
|
let block = Block::default()
|
||||||
.borders(Borders::ALL)
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.title(self.mode_title.clone())
|
.title(self.mode_title.clone())
|
||||||
.title_alignment(ratatui::layout::Alignment::Center)
|
.title_alignment(ratatui::layout::Alignment::Center)
|
||||||
.title_style(Style::default().reversed())
|
.title_style(Style::default().reversed())
|
||||||
|
@ -217,13 +227,22 @@ impl FloatContent for FloatingText {
|
||||||
|
|
||||||
// Calculate the inner area to ensure text is not drawn over the border
|
// Calculate the inner area to ensure text is not drawn over the border
|
||||||
let inner_area = block.inner(area);
|
let inner_area = block.inner(area);
|
||||||
let Rect { height, .. } = inner_area;
|
let Rect { width, height, .. } = inner_area;
|
||||||
|
|
||||||
|
self.update_wrapping(width as usize);
|
||||||
|
|
||||||
let lines = self
|
let lines = self
|
||||||
.src
|
.wrapped_lines
|
||||||
.iter()
|
.iter()
|
||||||
.skip(self.v_scroll)
|
.skip(self.v_scroll)
|
||||||
.take(height as usize)
|
.take(height as usize)
|
||||||
.flat_map(|l| l.into_text().unwrap())
|
.flat_map(|l| {
|
||||||
|
if self.wrap_words {
|
||||||
|
vec![Line::raw(l.clone())]
|
||||||
|
} else {
|
||||||
|
l.into_text().unwrap().lines
|
||||||
|
}
|
||||||
|
})
|
||||||
.map(|line| {
|
.map(|line| {
|
||||||
let mut skipped = 0;
|
let mut skipped = 0;
|
||||||
let mut spans = line
|
let mut spans = line
|
||||||
|
|
|
@ -14,13 +14,17 @@ use std::{
|
||||||
|
|
||||||
use crate::theme::Theme;
|
use crate::theme::Theme;
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use crossterm::{
|
|
||||||
event::{self, DisableMouseCapture, Event, KeyEventKind},
|
use ratatui::{
|
||||||
style::ResetColor,
|
backend::CrosstermBackend,
|
||||||
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
|
crossterm::{
|
||||||
ExecutableCommand,
|
event::{self, DisableMouseCapture, Event, KeyEventKind},
|
||||||
|
style::ResetColor,
|
||||||
|
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
|
||||||
|
ExecutableCommand,
|
||||||
|
},
|
||||||
|
Terminal,
|
||||||
};
|
};
|
||||||
use ratatui::{backend::CrosstermBackend, Terminal};
|
|
||||||
use state::AppState;
|
use state::AppState;
|
||||||
|
|
||||||
// Linux utility toolbox
|
// Linux utility toolbox
|
||||||
|
@ -33,12 +37,15 @@ struct Args {
|
||||||
#[arg(long, default_value_t = false)]
|
#[arg(long, default_value_t = false)]
|
||||||
#[clap(help = "Show all available options, disregarding compatibility checks (UNSAFE)")]
|
#[clap(help = "Show all available options, disregarding compatibility checks (UNSAFE)")]
|
||||||
override_validation: bool,
|
override_validation: bool,
|
||||||
|
#[arg(long, default_value_t = false)]
|
||||||
|
#[clap(help = "Bypass the terminal size limit")]
|
||||||
|
size_bypass: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() -> io::Result<()> {
|
fn main() -> io::Result<()> {
|
||||||
let args = Args::parse();
|
let args = Args::parse();
|
||||||
|
|
||||||
let mut state = AppState::new(args.theme, args.override_validation);
|
let mut state = AppState::new(args.theme, args.override_validation, args.size_bypass);
|
||||||
|
|
||||||
stdout().execute(EnterAlternateScreen)?;
|
stdout().execute(EnterAlternateScreen)?;
|
||||||
enable_raw_mode()?;
|
enable_raw_mode()?;
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
use crate::{float::FloatContent, hint::Shortcut};
|
use crate::{float::FloatContent, hint::Shortcut};
|
||||||
use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
|
|
||||||
use linutil_core::Command;
|
use linutil_core::Command;
|
||||||
use oneshot::{channel, Receiver};
|
use oneshot::{channel, Receiver};
|
||||||
use portable_pty::{
|
use portable_pty::{
|
||||||
ChildKiller, CommandBuilder, ExitStatus, MasterPty, NativePtySystem, PtySize, PtySystem,
|
ChildKiller, CommandBuilder, ExitStatus, MasterPty, NativePtySystem, PtySize, PtySystem,
|
||||||
};
|
};
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
|
crossterm::event::{KeyCode, KeyEvent, KeyModifiers},
|
||||||
layout::{Rect, Size},
|
layout::{Rect, Size},
|
||||||
style::{Color, Style, Stylize},
|
style::{Color, Style, Stylize},
|
||||||
text::{Line, Span},
|
text::{Line, Span},
|
||||||
|
@ -53,6 +53,7 @@ impl FloatContent for RunningCommand {
|
||||||
// Display a block indicating the command is running
|
// Display a block indicating the command is running
|
||||||
Block::default()
|
Block::default()
|
||||||
.borders(Borders::ALL)
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.title_top(Line::from("Running the command....").centered())
|
.title_top(Line::from("Running the command....").centered())
|
||||||
.title_style(Style::default().reversed())
|
.title_style(Style::default().reversed())
|
||||||
.title_bottom(Line::from("Press Ctrl-C to KILL the command"))
|
.title_bottom(Line::from("Press Ctrl-C to KILL the command"))
|
||||||
|
@ -80,6 +81,7 @@ impl FloatContent for RunningCommand {
|
||||||
|
|
||||||
Block::default()
|
Block::default()
|
||||||
.borders(Borders::ALL)
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.title_top(title_line.centered())
|
.title_top(title_line.centered())
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,12 +7,12 @@ use crate::{
|
||||||
running_command::RunningCommand,
|
running_command::RunningCommand,
|
||||||
theme::Theme,
|
theme::Theme,
|
||||||
};
|
};
|
||||||
use crossterm::event::{KeyCode, KeyEvent, KeyEventKind, KeyModifiers};
|
|
||||||
use ego_tree::NodeId;
|
use ego_tree::NodeId;
|
||||||
use linutil_core::{ListNode, Tab};
|
use linutil_core::{ListNode, TabList};
|
||||||
#[cfg(feature = "tips")]
|
#[cfg(feature = "tips")]
|
||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
|
crossterm::event::{KeyCode, KeyEvent, KeyEventKind, KeyModifiers},
|
||||||
layout::{Alignment, Constraint, Direction, Flex, Layout},
|
layout::{Alignment, Constraint, Direction, Flex, Layout},
|
||||||
style::{Style, Stylize},
|
style::{Style, Stylize},
|
||||||
text::{Line, Span, Text},
|
text::{Line, Span, Text},
|
||||||
|
@ -20,7 +20,6 @@ use ratatui::{
|
||||||
Frame,
|
Frame,
|
||||||
};
|
};
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use temp_dir::TempDir;
|
|
||||||
|
|
||||||
const MIN_WIDTH: u16 = 100;
|
const MIN_WIDTH: u16 = 100;
|
||||||
const MIN_HEIGHT: u16 = 25;
|
const MIN_HEIGHT: u16 = 25;
|
||||||
|
@ -31,6 +30,7 @@ D - disk modifications (ex. partitioning) (privileged)
|
||||||
FI - flatpak installation
|
FI - flatpak installation
|
||||||
FM - file modification
|
FM - file modification
|
||||||
I - installation (privileged)
|
I - installation (privileged)
|
||||||
|
K - kernel modifications (privileged)
|
||||||
MP - package manager actions
|
MP - package manager actions
|
||||||
SI - full system installation
|
SI - full system installation
|
||||||
SS - systemd actions (privileged)
|
SS - systemd actions (privileged)
|
||||||
|
@ -40,14 +40,12 @@ P* - privileged *
|
||||||
";
|
";
|
||||||
|
|
||||||
pub struct AppState {
|
pub struct AppState {
|
||||||
/// This must be passed to retain the temp dir until the end of the program
|
|
||||||
_temp_dir: TempDir,
|
|
||||||
/// Selected theme
|
/// Selected theme
|
||||||
theme: Theme,
|
theme: Theme,
|
||||||
/// Currently focused area
|
/// Currently focused area
|
||||||
pub focus: Focus,
|
pub focus: Focus,
|
||||||
/// List of tabs
|
/// List of tabs
|
||||||
tabs: Vec<Tab>,
|
tabs: TabList,
|
||||||
/// Current tab
|
/// Current tab
|
||||||
current_tab: ListState,
|
current_tab: ListState,
|
||||||
/// This stack keeps track of our "current directory". You can think of it as `pwd`. but not
|
/// This stack keeps track of our "current directory". You can think of it as `pwd`. but not
|
||||||
|
@ -62,6 +60,7 @@ pub struct AppState {
|
||||||
drawable: bool,
|
drawable: bool,
|
||||||
#[cfg(feature = "tips")]
|
#[cfg(feature = "tips")]
|
||||||
tip: String,
|
tip: String,
|
||||||
|
size_bypass: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum Focus {
|
pub enum Focus {
|
||||||
|
@ -86,12 +85,11 @@ enum SelectedItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AppState {
|
impl AppState {
|
||||||
pub fn new(theme: Theme, override_validation: bool) -> Self {
|
pub fn new(theme: Theme, override_validation: bool, size_bypass: bool) -> Self {
|
||||||
let (temp_dir, tabs) = linutil_core::get_tabs(!override_validation);
|
let tabs = linutil_core::get_tabs(!override_validation);
|
||||||
let root_id = tabs[0].tree.root().id();
|
let root_id = tabs[0].tree.root().id();
|
||||||
|
|
||||||
let mut state = Self {
|
let mut state = Self {
|
||||||
_temp_dir: temp_dir,
|
|
||||||
theme,
|
theme,
|
||||||
focus: Focus::List,
|
focus: Focus::List,
|
||||||
tabs,
|
tabs,
|
||||||
|
@ -104,6 +102,7 @@ impl AppState {
|
||||||
drawable: false,
|
drawable: false,
|
||||||
#[cfg(feature = "tips")]
|
#[cfg(feature = "tips")]
|
||||||
tip: get_random_tip(),
|
tip: get_random_tip(),
|
||||||
|
size_bypass,
|
||||||
};
|
};
|
||||||
|
|
||||||
state.update_items();
|
state.update_items();
|
||||||
|
@ -186,7 +185,9 @@ impl AppState {
|
||||||
pub fn draw(&mut self, frame: &mut Frame) {
|
pub fn draw(&mut self, frame: &mut Frame) {
|
||||||
let terminal_size = frame.area();
|
let terminal_size = frame.area();
|
||||||
|
|
||||||
if terminal_size.width < MIN_WIDTH || terminal_size.height < MIN_HEIGHT {
|
if !self.size_bypass
|
||||||
|
&& (terminal_size.height < MIN_HEIGHT || terminal_size.width < MIN_WIDTH)
|
||||||
|
{
|
||||||
let warning = Paragraph::new(format!(
|
let warning = Paragraph::new(format!(
|
||||||
"Terminal size too small:\nWidth = {} Height = {}\n\nMinimum size:\nWidth = {} Height = {}",
|
"Terminal size too small:\nWidth = {} Height = {}\n\nMinimum size:\nWidth = {} Height = {}",
|
||||||
terminal_size.width,
|
terminal_size.width,
|
||||||
|
@ -213,19 +214,19 @@ impl AppState {
|
||||||
self.drawable = true;
|
self.drawable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
let label_block =
|
let label_block = Block::default()
|
||||||
Block::default()
|
.borders(Borders::ALL)
|
||||||
.borders(Borders::all())
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.border_set(ratatui::symbols::border::Set {
|
.border_set(ratatui::symbols::border::Set {
|
||||||
top_left: " ",
|
top_left: " ",
|
||||||
top_right: " ",
|
top_right: " ",
|
||||||
bottom_left: " ",
|
bottom_left: " ",
|
||||||
bottom_right: " ",
|
bottom_right: " ",
|
||||||
vertical_left: " ",
|
vertical_left: " ",
|
||||||
vertical_right: " ",
|
vertical_right: " ",
|
||||||
horizontal_top: "*",
|
horizontal_top: "*",
|
||||||
horizontal_bottom: "*",
|
horizontal_bottom: "*",
|
||||||
});
|
});
|
||||||
let str1 = "Linutil ";
|
let str1 = "Linutil ";
|
||||||
let str2 = "by Chris Titus";
|
let str2 = "by Chris Titus";
|
||||||
let label = Paragraph::new(Line::from(vec![
|
let label = Paragraph::new(Line::from(vec![
|
||||||
|
@ -249,7 +250,8 @@ impl AppState {
|
||||||
|
|
||||||
let keybinds_block = Block::default()
|
let keybinds_block = Block::default()
|
||||||
.title(format!(" {} ", keybind_scope))
|
.title(format!(" {} ", keybind_scope))
|
||||||
.borders(Borders::all());
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED);
|
||||||
|
|
||||||
let keybinds = create_shortcut_list(shortcuts, keybind_render_width);
|
let keybinds = create_shortcut_list(shortcuts, keybind_render_width);
|
||||||
let n_lines = keybinds.len() as u16;
|
let n_lines = keybinds.len() as u16;
|
||||||
|
@ -293,7 +295,11 @@ impl AppState {
|
||||||
};
|
};
|
||||||
|
|
||||||
let list = List::new(tabs)
|
let list = List::new(tabs)
|
||||||
.block(Block::default().borders(Borders::ALL))
|
.block(
|
||||||
|
Block::default()
|
||||||
|
.borders(Borders::ALL)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED),
|
||||||
|
)
|
||||||
.highlight_style(tab_hl_style)
|
.highlight_style(tab_hl_style)
|
||||||
.highlight_symbol(self.theme.tab_icon());
|
.highlight_symbol(self.theme.tab_icon());
|
||||||
frame.render_stateful_widget(list, left_chunks[1], &mut self.current_tab);
|
frame.render_stateful_widget(list, left_chunks[1], &mut self.current_tab);
|
||||||
|
@ -405,6 +411,7 @@ impl AppState {
|
||||||
.block(
|
.block(
|
||||||
Block::default()
|
Block::default()
|
||||||
.borders(Borders::ALL & !Borders::RIGHT)
|
.borders(Borders::ALL & !Borders::RIGHT)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.title(title)
|
.title(title)
|
||||||
.title_bottom(bottom_title),
|
.title_bottom(bottom_title),
|
||||||
)
|
)
|
||||||
|
@ -414,6 +421,7 @@ impl AppState {
|
||||||
let disclaimer_list = List::new(task_items).highlight_style(style).block(
|
let disclaimer_list = List::new(task_items).highlight_style(style).block(
|
||||||
Block::default()
|
Block::default()
|
||||||
.borders(Borders::ALL & !Borders::LEFT)
|
.borders(Borders::ALL & !Borders::LEFT)
|
||||||
|
.border_set(ratatui::symbols::border::ROUNDED)
|
||||||
.title(task_list_title),
|
.title(task_list_title),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -718,7 +726,8 @@ impl AppState {
|
||||||
fn enable_description(&mut self) {
|
fn enable_description(&mut self) {
|
||||||
if let Some(command_description) = self.get_selected_description() {
|
if let Some(command_description) = self.get_selected_description() {
|
||||||
if !command_description.is_empty() {
|
if !command_description.is_empty() {
|
||||||
let description = FloatingText::new(command_description, "Command Description");
|
let description =
|
||||||
|
FloatingText::new(command_description, "Command Description", true);
|
||||||
self.spawn_float(description, 80, 80);
|
self.spawn_float(description, 80, 80);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -804,7 +813,7 @@ impl AppState {
|
||||||
|
|
||||||
fn toggle_task_list_guide(&mut self) {
|
fn toggle_task_list_guide(&mut self) {
|
||||||
self.spawn_float(
|
self.spawn_float(
|
||||||
FloatingText::new(ACTIONS_GUIDE.to_string(), "Important Actions Guide"),
|
FloatingText::new(ACTIONS_GUIDE.to_string(), "Important Actions Guide", true),
|
||||||
80,
|
80,
|
||||||
80,
|
80,
|
||||||
);
|
);
|
||||||
|
|
|
@ -11,7 +11,7 @@ pub fn userguide() -> Result<String, DynError> {
|
||||||
let mut md = String::new();
|
let mut md = String::new();
|
||||||
md.push_str("<!-- THIS FILE IS GENERATED BY cargo xtask docgen -->\n# Walkthrough\n");
|
md.push_str("<!-- THIS FILE IS GENERATED BY cargo xtask docgen -->\n# Walkthrough\n");
|
||||||
|
|
||||||
let tabs = linutil_core::get_tabs(false).1;
|
let tabs = linutil_core::get_tabs(false);
|
||||||
|
|
||||||
for tab in tabs {
|
for tab in tabs {
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
|
@ -24,7 +24,7 @@ pub fn userguide() -> Result<String, DynError> {
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
println!(" Directory: {}", entry.name);
|
println!(" Directory: {}", entry.name);
|
||||||
|
|
||||||
if entry.name != "root".to_string() {
|
if entry.name != "root" {
|
||||||
md.push_str(&format!("\n### {}\n\n", entry.name));
|
md.push_str(&format!("\n### {}\n\n", entry.name));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,18 +36,16 @@ pub fn userguide() -> Result<String, DynError> {
|
||||||
current_dir
|
current_dir
|
||||||
));
|
));
|
||||||
} */ // Commenting this for now, might be a good idea later
|
} */ // Commenting this for now, might be a good idea later
|
||||||
} else {
|
} else if !entry.description.is_empty() {
|
||||||
if !entry.description.is_empty() {
|
#[cfg(debug_assertions)]
|
||||||
#[cfg(debug_assertions)]
|
println!(" Entry: {}", entry.name);
|
||||||
println!(" Entry: {}", entry.name);
|
#[cfg(debug_assertions)]
|
||||||
#[cfg(debug_assertions)]
|
println!(" Description: {}", entry.description);
|
||||||
println!(" Description: {}", entry.description);
|
|
||||||
|
|
||||||
md.push_str(&format!("- **{}**: {}\n", entry.name, entry.description));
|
md.push_str(&format!("- **{}**: {}\n", entry.name, entry.description));
|
||||||
} /* else {
|
} /* else {
|
||||||
md.push_str(&format!("- **{}**\n", entry.name));
|
md.push_str(&format!("- **{}**\n", entry.name));
|
||||||
} */ // https://github.com/ChrisTitusTech/linutil/pull/753
|
} */ // https://github.com/ChrisTitusTech/linutil/pull/753
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user