Skip to main content

hyprland-state

Live state interface for Hyprland — read, write, and inspect the running compositor's configuration.

Bridges the gap between hyprland-config (disk), hyprland-socket (IPC), and hyprland-schema (metadata) into a single coherent API.

What it does

  • Options — read effective values (IPC > disk > schema default), apply changes, inspect metadata, validate against schema constraints
  • Animations — read/write animation states, manage bezier curves, navigate the animation tree
  • Monitors — read monitor layout from IPC, apply monitor configuration
  • Binds — read keybind definitions, execute dispatchers
  • Devices — detect input devices (touchpad, etc.)
  • Persistence — track pending changes, save to disk, discard/revert

Installation

pip install hyprland-state

Quick start

from hyprland_state import HyprlandState

# Schema is auto-loaded for the running Hyprland version
state = HyprlandState()

print(state.version)  # "0.54.2"

# Read the live value (typed via schema — returns int, not str)
border = state.get("general:border_size")  # 2

# Inspect schema metadata
info = state.inspect("general:border_size")
print(info.type, info.default, info.min, info.max)  # int 1 0 20

# Write to the running compositor (validated against schema)
state.apply("general:border_size", 3)
state.apply_batch([("general:gaps_in", 5), ("general:gaps_out", 10)])

# Animations
for anim in state.animations.get_all():
    print(f"{anim.name}: enabled={anim.enabled}, speed={anim.speed}")

state.animations.apply("windows", True, 3.0, "easeOut", "slide")

# Monitors
for mon in state.monitors.get_all():
    print(f"{mon.name}: {mon.width}x{mon.height}@{mon.refresh_rate}Hz")

# Devices
if state.has_touchpad():
    print("Touchpad detected")

Pending state and persistence

Changes made via apply() take effect immediately in the compositor but are tracked as pending until explicitly saved or discarded:

state.apply("general:border_size", 5)
state.apply("decoration:rounding", 10)

state.is_dirty()  # True
state.pending()   # ["general:border_size", "decoration:rounding"]

state.save()      # writes to config file and reloads compositor
# or
state.discard()   # reverts compositor to saved values (on-disk, or schema default)

Validation

Values are validated against schema constraints (min/max, enum) before being sent to the compositor. Invalid values raise ValueError:

state.apply("general:border_size", 999)  # ValueError: above maximum 20

# Bypass validation when needed
state.apply("general:border_size", 999, validate=False)

Lua-mode configs (Hyprland 0.55+)

When the running compositor was started with a hyprland.lua entrypoint (configProvider: lua), the legacy hyprctl keyword IPC is rejected. HyprlandState detects this once via is_live_lua_mode() and transparently routes apply(), apply_batch(), keyword(), and dispatch() through hyprctl eval with the equivalent hl.* snippet — callers don't have to branch:

state = HyprlandState()
state.is_live_lua_mode()  # True on a Hyprland 0.55+ Lua config

state.apply("general:border_size", 3)   # hl.config({ general = { border_size = 3 } })
state.dispatch("workspace", "1")        # hl.dispatch(hl.dsp.workspace(1))

For submap registration use define_submap() — the bare submap keyword has no per-line Lua equivalent (Lua's submap API is declarative), and the method also batches the Hyprlang submap= / bind= / submap=reset sequence atomically:

state.define_submap("resize", [
    ("bind", ", H, resizeactive, -10 0"),
    ("bind", ", L, resizeactive, 10 0"),
])

Untranslatable keywords or dispatchers (e.g. a dispatcher with no hl.dsp.* mapping) surface as hyprland_socket.CommandError, matching the legacy-mode failure mode.

Offline mode

Works without a running Hyprland instance — reads from config files and schema:

state = HyprlandState(offline=True)
value = state.get_disk("general:border_size")  # from config file
default = state.get_default("general:border_size")  # from schema

Use reconnect() to switch to online mode when the compositor becomes available:

state.reconnect()  # True if Hyprland is now reachable

Dependencies

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hyprland_state-0.4.4.tar.gz (20.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hyprland_state-0.4.4-py3-none-any.whl (23.3 kB view details)

Uploaded Python 3

File details

Details for the file hyprland_state-0.4.4.tar.gz.

File metadata

  • Download URL: hyprland_state-0.4.4.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hyprland_state-0.4.4.tar.gz
Algorithm Hash digest
SHA256 7885e210761ac030b1b7937ea4c541839a294714bf75332d75076d3424071ebf
MD5 1b6fbfce00e22ffc50dae8bc7b532234
BLAKE2b-256 0da0a1ab14d4153f3f86d1cb720a43d2563f11cce1989324033528e522f02b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hyprland_state-0.4.4.tar.gz:

Publisher: publish.yml on BlueManCZ/hyprland-state

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hyprland_state-0.4.4-py3-none-any.whl.

File metadata

  • Download URL: hyprland_state-0.4.4-py3-none-any.whl
  • Upload date:
  • Size: 23.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hyprland_state-0.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 631e65cbdcf3498fa9f4476480ca6589e4c818600cc955b677f78887f4b88acf
MD5 68e72016f1f179a10feb6e17ac9c2686
BLAKE2b-256 e3e8a1293e2d786c72ec47f8de58848a0e3f3ea8bb26a3e0f77097d8590a3f51

See more details on using hashes here.

Provenance

The following attestation bundles were made for hyprland_state-0.4.4-py3-none-any.whl:

Publisher: publish.yml on BlueManCZ/hyprland-state

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.4.6

2 files

0.4.5

2 files

This release

0.4.4 This release

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page