Skip to main content

Typed Python library for Hyprland IPC via Unix sockets

Project description

hyprland-socket

Typed Python library for Hyprland IPC via Unix sockets.

Covers both read and write operations — querying state, applying settings live, batch commands, and monitoring events.

Installation

pip install hyprland-socket

Usage

Query state

import hyprland_socket

# Check if Hyprland is running
if hyprland_socket.is_running():
    # Read monitors
    for mon in hyprland_socket.get_monitors():
        print(f"{mon.name}: {mon.width}x{mon.height} @ {mon.refresh_rate}Hz")

    # List all windows
    for win in hyprland_socket.get_windows():
        print(f"{win.class_name}: {win.title} (workspace {win.workspace_name})")

    # List workspaces
    for ws in hyprland_socket.get_workspaces():
        print(f"Workspace {ws.name}: {ws.windows} windows on {ws.monitor}")

    # Read a live option and extract its typed value
    option = hyprland_socket.get_option("general:gaps_in")
    gaps = hyprland_socket.extract_ipc_value(option, hint=0)
    print(f"gaps_in = {gaps}")

    # Read keybinds
    for bind in hyprland_socket.get_binds():
        mods = hyprland_socket.modmask_to_str(bind.modmask)
        print(f"{mods} + {bind.key} -> {bind.dispatcher} {bind.arg}")

Apply settings

import hyprland_socket

# Set a single option
hyprland_socket.keyword("general:gaps_in", 5)

# Batch multiple settings (single IPC call)
hyprland_socket.keyword_batch([
    ("general:gaps_in", "5"),
    ("general:gaps_out", "10"),
    ("decoration:rounding", "8"),
])

# Execute a dispatcher
hyprland_socket.dispatch("workspace", "2")

# Set the live cursor theme and size
hyprland_socket.set_cursor("Bibata-Modern-Classic", 24)

# Reload config from disk
hyprland_socket.reload()

Monitor events

import hyprland_socket

# Blocking iterator over compositor events
for event in hyprland_socket.listen():
    print(f"{event.name}: {event.data}")
    # e.g. "workspace: 2", "monitoradded: DP-3"

For integration with GTK/GLib event loops, use the raw socket:

sock = hyprland_socket.connect_event_socket()
fd = sock.fileno()
# Use GLib.io_add_watch(fd, ...) or similar

For typed event dispatch with named fields instead of raw strings, see hyprland-events which builds on this library.

Error handling

All functions raise typed exceptions instead of returning None:

from hyprland_socket import SocketError, CommandError

try:
    hyprland_socket.keyword("invalid:option", "value")
except SocketError:
    print("Hyprland is not running")
except CommandError as e:
    print(f"Rejected: {e}")

Models

Function Returns
get_monitors() list[Monitor]
get_windows() list[Window]
get_workspaces() list[Workspace]
get_binds() list[Bind]
get_animations() tuple[list[Animation], list[BezierCurve]]
get_devices() dict
get_option(key) dict (use extract_ipc_value() to unwrap)
get_version() Version

All models are frozen dataclasses with a from_dict() classmethod for construction from Hyprland's JSON responses.

Socket lifecycle

Hyprland processes command-socket connections synchronously — an unclosed connection freezes the compositor until a five-second timeout expires. All functions in this library open and close the command socket within a single call, so normal usage is safe.

The event socket (connect_event_socket()) is a separate, long-lived connection and is safe to keep open indefinitely.

Requirements

  • Python >= 3.12
  • A running Hyprland session (the HYPRLAND_INSTANCE_SIGNATURE environment variable must be set)

License

MIT

Project details


Download files

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

Source Distribution

hyprland_socket-0.12.2.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

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

hyprland_socket-0.12.2-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file hyprland_socket-0.12.2.tar.gz.

File metadata

  • Download URL: hyprland_socket-0.12.2.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hyprland_socket-0.12.2.tar.gz
Algorithm Hash digest
SHA256 b45778940710d0667d372f227bc53452fdf123d71d1dcbd652a97677ecbfc70b
MD5 8ea3805f5a2acf50b57683a27b8adae8
BLAKE2b-256 3d98f5d09c4dc2f9a4f361c9a0aa6201178feea3083475a1640586dcf15b3931

See more details on using hashes here.

Provenance

The following attestation bundles were made for hyprland_socket-0.12.2.tar.gz:

Publisher: publish.yml on BlueManCZ/hyprland-socket

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_socket-0.12.2-py3-none-any.whl.

File metadata

File hashes

Hashes for hyprland_socket-0.12.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4f1d007b7f9165447c39c66c578012bd2628331aeadb3a81c2fe2229711dc4d7
MD5 001434d508fdc825cc1e375da8c8301a
BLAKE2b-256 e474e156c61e041b357591749aa480257b129e4c9a186faed98fd72551c68049

See more details on using hashes here.

Provenance

The following attestation bundles were made for hyprland_socket-0.12.2-py3-none-any.whl:

Publisher: publish.yml on BlueManCZ/hyprland-socket

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

Supported by

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