hyprmoncfg is a terminal layout editor, CLI, profile store, and hotplug/lid-aware daemon for Hyprland monitor setups. Drag displays into place, save hardware-aware profiles, apply them safely, and let the daemon switch profiles when monitors or your laptop lid changes.
- Spatial layout editor -- drag monitors on a canvas and tune mode, scale, VRR, mirror, transform, and exact position
- Named profiles -- save setups like
desk,conference, orhome-office - Hardware-identity matching -- profiles follow monitor make, model, and serial instead of unstable connector names
- Hotplug and lid-aware daemon -- apply the right profile automatically when monitors change or the laptop lid closes
- Workspace planner -- assign workspaces across monitors with sequential, interleave, or manual strategies
- Safe apply with revert -- reload Hyprland, verify the result, and revert unless you confirm
- Include-chain verification -- refuse to write generated monitor config that Hyprland is not reading
- Hyprland 0.55 Lua config support -- use
monitors.luaautomatically whenhyprland.luais active, while preserving legacymonitors.confsetups - One hard runtime dependency -- Hyprland; UPower is optional for immediate lid events
Arch Linux:
yay -S hyprmoncfgLatest main from AUR:
yay -S hyprmoncfg-gitVoid Linux (Unofficial Repo):
echo "repository=https://mirror.black-hole.dev/$(uname -m)/" | sudo tee /etc/xbps.d/20-repository-extra.conf
sudo xbps-install -S hyprmoncfgBuild from source:
git clone https://github.com/crmne/hyprmoncfg.git
cd hyprmoncfg
go build -o bin/hyprmoncfg ./cmd/hyprmoncfg
go build -o bin/hyprmoncfgd ./cmd/hyprmoncfgd
install -Dm755 bin/hyprmoncfg ~/.local/bin/hyprmoncfg
install -Dm755 bin/hyprmoncfgd ~/.local/bin/hyprmoncfgdDistro packagers should use PACKAGING.md.
Make sure ~/.config/hypr/hyprland.conf sources monitors.conf:
source = ~/.config/hypr/monitors.conf
Hyprland does not read that file automatically. hyprmoncfg creates and rewrites monitors.conf, then refuses to write if the source chain is missing so you do not edit a file Hyprland ignores.
hyprmoncfgDrag monitors into place, press s, type a profile name like desk, and press Enter.
Apply it later from the CLI:
hyprmoncfg apply deskAfter an AUR install:
systemctl --user daemon-reload
systemctl --user enable --now hyprmoncfgdAfter a manual install:
mkdir -p ~/.config/systemd/user
cp packaging/systemd/hyprmoncfgd.local.service ~/.config/systemd/user/hyprmoncfgd.service
systemctl --user daemon-reload
systemctl --user enable --now hyprmoncfgdThe daemon scores every profile in ~/.config/hyprmoncfg/profiles/, so delete throwaway profiles before relying on automatic switching.
hyprmoncfg adapts to your theme. Here are some examples:
| Layout editor | Save dialog |
|---|---|
Configuring monitors in Hyprland means writing monitor= lines by hand. A 4K display at 1.33x scale is effectively 2880x1620 pixels, so the monitor next to it needs to start at x=2880. Vertically centering a 1080p panel against it means doing division in your head, reloading, noticing the layout is wrong, and editing again.
It gets worse when setups change:
- No visual editor. You write
monitor=lines by hand and hope the coordinates are right. - No profiles. Desk, projector, travel, and docked setups all need different layouts.
- No automatic switching. Hotplug a monitor and Hyprland guesses again.
- Connector names are unstable.
DP-1andDP-2can swap between boots. - Some tools pull in too much. Python, GTK, and GObject introspection are a lot of stack just to move a rectangle.
hyprmoncfg ships two binaries:
hyprmoncfg |
TUI + CLI for layout editing, profile management, and workspace planning |
hyprmoncfgd |
Background daemon that auto-applies the best matching profile on hotplug and lid changes |
Both use the same apply engine:
write monitors.conf -> reload Hyprland -> verify live state -> confirm or revertThere is no separate best-effort daemon path. If the TUI can apply a profile correctly, the daemon uses the same machinery.
Profiles live in ~/.config/hyprmoncfg/profiles/. Each profile has a canonical JSON file plus generated .conf and .lua sidecars you can keep as plain Hyprland snippets if you stop using hyprmoncfg. Add the directory to your dotfile manager and your layouts roam across every machine you own.
With chezmoi:
chezmoi add ~/.config/hyprmoncfgNow your desk at home, your laptop on the road, and your Raspberry Pi in the closet all share the same profile library. The daemon picks the right one based on what's actually plugged in.
You don't commit the active ~/.config/hypr/monitors.conf or ~/.config/hypr/monitors.lua. You commit your profiles. The tool writes the active generated monitor config for you.
| hyprmoncfg | Monique | HyprDynamicMonitors | HyprMon | nwg-displays | kanshi | |
|---|---|---|---|---|---|---|
| GUI or TUI | TUI | GUI | TUI | TUI | GUI | CLI |
| Spatial layout editor | Yes | Yes | Partial | Yes | Yes | No |
| Drag-and-drop | Yes | Yes | No | Yes | Yes | No |
| Snapping | Yes | Not documented | No | Yes | Yes | No |
| Profiles | Yes | Yes | Yes | Yes | No | Yes |
| Auto-switching daemon | Yes | Yes | Yes | No (roadmap) | No | Yes |
| Workspace planning | Yes | Yes | No | No | Basic | No |
| Mirror support | Yes | Yes | Yes | Yes | Yes | No |
| Safe apply with revert | Yes | Yes | No | Partial (manual rollback) | No | No |
| Hyprland 0.55 Lua config | Yes | No | No | No | Yes | N/A |
| Include-chain verification | Yes | No | No | No | No | No |
| Additional runtime dependencies | None | Python + GTK4 + libadwaita | UPower, D-Bus | None | Python + GTK3 | None |
Full documentation at hyprmoncfg.dev.
Install the pre-commit hook to run CI checks locally before each commit:
ln -sf "$(pwd)/scripts/pre-commit" .git/hooks/pre-commitThe hook runs go mod tidy, go vet, go test, and go build.
Regenerate demo videos and screenshots:
./scripts/capture_media.shThe media scripts use the installed hyprmoncfg from PATH.
Regenerate only screenshots:
./scripts/capture_screenshots.shMIT