„bHELPER.sh“ ändern

This commit is contained in:
dingens 2022-10-17 22:04:20 +00:00
parent 3117195d23
commit d05bef8908
1 changed files with 19 additions and 16 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
SkriptVersion="2022-10-17 23:30"
SkriptVersion="2022-10-18 00:05"
gl_SkriptName=$(basename "${0}")
gl__SkriptPfadName=$(cd "$(dirname "${0}")"; pwd -P)/$(basename "${0}")
@ -368,22 +368,25 @@ read hardware
xk|XK)
bannertitel="Hauptmenü => Hardware => Bildschirmkonfigurieren (xrandr)"
banner
echo "${gl__format_red}► Alle aktiven Monitore:${gl__format_off}"
echo "${gl__ausgabe_anfang}"
xrandr --listactivemonitors
echo "${gl__ausgabe_ende}"
echo ""
echo "${gl__format_red}► Alle vorhandene Monitoranschlüsse:${gl__format_off}"
echo "${gl__ausgabe_anfang}"
xrandr --listproviders
echo "${gl__ausgabe_ende}"
echo ""
echo "${gl__format_red}► Komplette Ausgabe:${gl__format_off}"
echo "${gl__ausgabe_anfang}"
xrandr
echo "${gl__ausgabe_ende}"
task_title "Alle aktiven Monitore"
task_title_syntax " xrandr --listactivemonitors"
terminal_output_begin
xrandr --listactivemonitors
terminal_output_end
task_title "Alle vorhandene Monitoranschlüsse"
task_title_syntax " xrandr --listproviders"
terminal_output_begin
xrandr --listproviders
terminal_output_end
task_title "Komplette Ausgabe"
task_title_syntax " xrandr"
terminal_output_begin
xrandr
terminal_output_end
ende
;;