Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
6 lines
205 B
Bash
Executable File
6 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Print the name of the built-in laptop display, including disabled outputs.
|
|
|
|
hyprctl monitors all -j | jq -r '.[] | select(.name | test("^(eDP|LVDS|DSI)-")).name' | head -n 1
|