7 lines
195 B
Bash
Executable File
7 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Get focused Hyprland monitor scaling
|
|
# omarchy:examples=omarchy-hyprland-monitor-scaling-get
|
|
|
|
hyprctl monitors -j | jq -r '.[] | select(.focused == true) | .scale'
|