6 lines
202 B
Bash
Executable File
6 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# blob: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
|