NoSignal-OS/os updates/fish-to-bash/bash/fns/transcoding
28allday 19fd794b6b NoSignal — fully-offline Arch → Hyprland desktop installer
Single-script builder (nosignal.sh) that turns a stock Arch Linux ISO into a
fully-offline installer for a themed Hyprland + caelestia (Quickshell) desktop:
matching SDDM greeter, Btrfs/Limine bootable snapshots, chwd-style GPU
detection, and a curated "os updates" layer (keybind cheatsheet, settings
panels, system polish, on-box management skill). See README.md.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-21 11:03:10 +01:00

33 lines
504 B
Text
Executable file

# Transcoding helpers have moved to omarchy-transcode.
transcode-video-1080p() {
omarchy-transcode "$1" mp4 1080p
}
transcode-video-4K() {
omarchy-transcode "$1" mp4 4k
}
transcode-video-gif() {
omarchy-transcode "$1" gif 1080p
}
img2jpg() {
omarchy-transcode "$1" jpg high
}
img2jpg-small() {
omarchy-transcode "$1" jpg low
}
img2jpg-medium() {
omarchy-transcode "$1" jpg medium
}
img2jpg-large() {
omarchy-transcode "$1" jpg high
}
img2png() {
omarchy-transcode "$1" png high
}