22 lines
776 B
Bash
Executable File
22 lines
776 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Print monitor panel state for the shell
|
|
# omarchy:group=monitor
|
|
|
|
{ omarchy-brightness-display 2>/dev/null; echo; } | head -n 1
|
|
|
|
monitors_json=$(hyprctl monitors all -j)
|
|
|
|
printf '%s\n' "$monitors_json" | jq -r '
|
|
def internal: test("^(eDP|LVDS|DSI)-");
|
|
([.[] | select(.name | internal)][0].name // ""),
|
|
([.[] | select((.name | internal) | not)][0].name // ""),
|
|
([.[] | select((.name | internal) and .disabled != true)][0].name // ""),
|
|
([.[] | select((.name | internal) and .mirrorOf != "none")][0].mirrorOf // "")
|
|
'
|
|
|
|
omarchy-hyprland-monitor-focused 2>/dev/null || echo
|
|
omarchy-hyprland-monitor-scaling 2>/dev/null || echo
|
|
|
|
printf '%s\n' "$monitors_json" | jq -c '[.[] | {name, enabled:(.disabled != true), focused:(.focused == true)}]'
|