hyprland-titus

(★ 689)

My config files for Hyprland Wayland Window Manager

File Explorer

  • .gitignore
  • hyprland-titus.png
  • README.md
  • set-hypr.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

sed

View Details ▼

Edit text in a scriptable manner.
See also: `awk`, `ed`.

{{command}} | sed 's/apple/mango/g'

Replace all `apple` (basic `regex`) occurrences with `mango` (basic `regex`) in all input lines and print the result to `stdout`:

{{command}} | sed 's/apple/mango/g'

Replace all `apple` (basic `regex`) occurrences with `mango` (basic `regex`) in all input lines and print the result to `stdout`:

{{command}} | sed 's/apple/mango/g'

[s]ubstitute all occurrences of "apple" with "mango" on all lines, print to `stdout`:

🔍

swaylock

View Details ▼

Screen locking utility for Wayland compositors.

swaylock

Lock the screen using the config in `$HOME/.swaylock/config` or `$XDG_CONFIG_HOME/swaylock/config`:

swaylock {{[-c|--color]}} {{0000ff}}

Lock the screen with a simple color background (`rrggbb` format):

swaylock {{[-i|--image]}} {{path/to/image}}

Lock the screen with a background image:

🔍

archinstall

View Details ▼

Guided Arch Linux installer.

archinstall

Start the interactive installer:

archinstall --dry-run

Start the interactive installer and generate a configuration file instead of installing:

archinstall --advanced

Enable advanced options:

🔍

makepkg

View Details ▼

Create a package which can be used with `pacman`.
Uses the `PKGBUILD` file in the current working directory by default.

makepkg

Make a package:

makepkg {{[-s|--syncdeps]}}

Make a package and install its dependencies:

makepkg {{[-si|--syncdeps --install]}}

Make a package, install its dependencies then install it to the system:

# Project Badges

  • Screenshot Screenshot
// repository documentation