hyprland-wiki/pages/Configuring/Expanding-functionality.md
Mihai Fufezan 0aae54eb6a
wiki: prepare for hextra
treewide: replace hint with callout

treewide: remove ToC header

remove <toc>, since it's autogenerated
add missing _index.md

treewide: add frontmatter

treewide: fix headings

add weights

Configuring,Getting Started: expand in sidebar

Add version selector

fix links
2024-03-14 22:45:14 +02:00

851 B

weight title
13 Expanding functionality

Hyprland exposes two powerful sockets for you to use.

The first, socket1, can be fully controlled with hyprctl, see its usage here.

The second, socket2, sends events for certain changes / actions and can be used to react to different events. See its description here.

Example script

This bash script will change the outer gaps to 20 if the currently focused monitor is DP-1, and 30 otherwise.

#!/usr/bin/env bash

function handle {
  if [[ ${1:0:10} == "focusedmon" ]]; then
    if [[ ${1:12:4} == "DP-1" ]]; then
      hyprctl keyword general:gaps_out 20
    else
      hyprctl keyword general:gaps_out 30
    fi
  fi
}

socat - "UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" | while read -r line; do handle "$line"; done