Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Noro18/linux-ricing-dotfiles/llms.txt

Use this file to discover all available pages before exploring further.

These utility scripts handle display adjustments, focus mode, terminal startup, and miscellaneous desktop actions. Most are triggered by keybinds defined in ~/.config/hypr/configurations/keybinds.conf.
Toggles hyprsunset on and off. When off, starts it with a color temperature of 3500K and 75% gamma. When on, kills the running process.Trigger: Keybind.
toggle-hyprsunset
toggle-hyprsunset
#!/bin/bash
PID=$(pgrep -x hyprsunset)
if [ -z "$PID" ]; then
    hyprsunset --temperature 3500 --gamma 75 &
else
    kill "$PID"
fi
Adjusts the temperature or intensity of the running hyprsunset instance without toggling it off entirely.Trigger: Keybind.
adjust-hyprsunset
Sets the primary monitor (eDP-1) to 1920×1080 at 60 Hz using hyprctl keyword.
setfhd
setfhd
hyprctl keyword monitor "eDP-1,1920x1080@60,auto,1"
Sets the primary monitor (eDP-1) to 1280×720 at 60 Hz. Useful for screen recording or reducing GPU load.
sethd
sethd
hyprctl keyword monitor "eDP-1,1280x720@60,auto,1"
Picks a random .jsonc config from ~/.config/fastfetch/configs/ and runs fastfetch with it. Hook this into your shell’s rc file (~/.bashrc or ~/.zshrc) to get a different layout each time you open a terminal.Called by: Shell init (.bashrc / .zshrc).
fastfetch-random
#!/bin/bash
CONFIG_DIR="$HOME/.config/fastfetch/configs"
configs=("$CONFIG_DIR"/*.jsonc)
random_config=${configs[RANDOM % ${#configs[@]}]}
fastfetch --config "$random_config"
Add fastfetch-random as the last line of your ~/.bashrc or ~/.zshrc to run it on every new terminal session.
Enables a focus / distraction-free mode. See ~/.config/hypr/focus-mode.conf for the Hyprland rules it applies.
focus-mode
Outputs the current battery level and charging status. Used as a data source for Waybar custom modules or terminal applets.
battery
Launches Kitty with startup-specific flags or layout. Called by Hyprland’s exec-once in hyprland.conf so a terminal is available immediately after login.Called by: Hyprland exec-once.
autostart_kitty
Sets up Android Debug Bridge over Wi-Fi, allowing wireless debugging of Android devices from the desktop.
adb_wifi
Opens ChatGPT in a browser window or dedicated app. Triggered by a keybind or Rofi quicklink.
open-chat-gpt
Opens or manages the Lyra AI assistant interface. Triggered by a keybind.
lyra-assistant

Build docs developers (and LLMs) love