wootc

(★ 12)

Windows bootc installer — install bootc-based Linux images from Windows without repartitioning

File Explorer

  • .editorconfig
  • .gitignore
  • .gitmodules
  • .golangci.yml
  • .ste-budget
  • AGENTS.md
  • CLAUDE.md
  • codecov.yml
  • CONTEXT.md
  • CONTRIBUTING.md
  • fisherman
  • HANDOFF.md
  • justfile
  • LICENSE-GPL-2.0
  • LICENSE-MIT
  • README.md
  • renovate.json
  • ROADMAP.md

# 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 add

View Details ▼

Stage changed files for a commit.

git add {{path/to/file}}

Stage a file for a commit:

git add {{[-A|--all]}}

Add all files (tracked and untracked):

git add .

Add all files recursively starting from the current folder:

🔍

just

View Details ▼

Save and run project-specific commands.

just {{recipe}}

Run a recipe specified in the justfile:

just

Start a REPL (interactive shell):

just --init

Initialize new justfile in project root:

🔍

bootc

View Details ▼

Boot and upgrade via container images.
Manage transactional, in-place operating system updates using OCI/Docker container images.

bootc status

Show deployments in the order they will appear in the bootloader:

bootc upgrade --check

Check if any updates are available:

bootc upgrade --apply

Prepare a new update and reboot into it:

🔍

btrfs

View Details ▼

A filesystem based on the copy-on-write (COW) principle for Linux.
Some subcommands such as `device` have their own usage documentation.

sudo btrfs {{[su|subvolume]}} {{[c|create]}} {{path/to/subvolume}}

Create subvolume:

sudo btrfs {{[su|subvolume]}} {{[l|list]}} {{path/to/mount_point}}

List subvolumes:

sudo btrfs {{[f|filesystem]}} df {{path/to/mount_point}}

Show space usage information:

🔍

cryptsetup

View Details ▼

Manage plain `dm-crypt` and LUKS (Linux Unified Key Setup) encrypted volumes.
Some subcommands such as `luksFormat` have their own usage documentation.

cryptsetup luksFormat {{/dev/sdXY}}

Initialize a LUKS volume with a passphrase (overwrites all data on the partition):

cryptsetup open {{/dev/sdXY}} {{mapping_name}}

Open a LUKS volume and create a decrypted mapping at `/dev/mapper/mapping_name`:

cryptsetup status {{mapping_name}}

Display information about a mapping:

🔍

losetup

View Details ▼

Set up and control loop devices.

losetup {{[-a|--all]}}

List loop devices with detailed info:

sudo losetup {{/dev/loop}} /{{path/to/file}}

Attach a file to a given loop device:

sudo losetup --show {{[-P|--partscan]}} {{[-f|--find]}} /{{path/to/file}}

Attach a file to a new free loop device and scan the device for partitions:

🔍

niri

View Details ▼

A scrollable-tiling Wayland compositor.

niri msg outputs

List all outputs and their properties:

niri msg output {{output_name}} off

Turn off an output (monitor):

niri msg action focus-workspace-down

Focus the workspace below the current one:

// repository documentation