„bHELPER.sh“ ändern

This commit is contained in:
dingens 2022-10-16 19:20:58 +00:00
parent 044276f83d
commit 540e42f824
1 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
SkriptVersion="2022-10-16 21:15"
SkriptVersion="2022-10-16 21:20"
gl_SkriptName=$(basename "${0}")
gl__SkriptPfadName=$(cd "$(dirname "${0}")"; pwd -P)/$(basename "${0}")
@ -536,35 +536,36 @@ task_title_syntax " sudo flatpak update"
l|L)
bannertitel="Hauptmenü => Software => Flatpak => Installierte Pakete auflisten"
banner
echo "${gl__format_cyanlight}●【${gl__format_off}${gl__format_red}Detaillierte Liste aller installierten Pakete${gl__format_off}${gl__format_cyanlight}${gl__format_off}"
task_title "Detaillierte Liste aller installierten Pakete"
task_title_syntax " flatpak list --show-details"
echo "${gl__ausgabe_anfang}"
/usr/bin/flatpak list --show-details
echo "${gl__ausgabe_ende}"
ausgefuehrte_syntax " flatpak list --show-details"
echo ""
echo ""
echo "${gl__format_cyanlight}●【${gl__format_off}${gl__format_red}Liste aller installierten Pakete${gl__format_off}${gl__format_cyanlight}${gl__format_off}"
task_title "Liste aller installierten Pakete"
task_title_syntax " flatpak list"
echo "${gl__ausgabe_anfang}"
/usr/bin/flatpak list
echo "${gl__ausgabe_ende}"
ausgefuehrte_syntax " flatpak list"
echo ""
echo ""
echo "${gl__format_cyanlight}●【${gl__format_off}${gl__format_red}Detaillierte Liste aller installierten Programme${gl__format_off}${gl__format_cyanlight}${gl__format_off}"
task_title "Detaillierte Liste aller installierten Programme"
task_title_syntax " flatpak list --app --show-details"
echo "${gl__ausgabe_anfang}"
/usr/bin/flatpak list --app --show-details
echo "${gl__ausgabe_ende}"
ausgefuehrte_syntax " flatpak list --app --show-details"
echo ""
echo ""
echo "${gl__format_cyanlight}●【${gl__format_off}${gl__format_red}Liste aller installierten Programme${gl__format_off}${gl__format_cyanlight}${gl__format_off}"
task_title "Liste aller installierten Programme"
task_title_syntax " flatpak list --app"
echo "${gl__ausgabe_anfang}"
/usr/bin/flatpak list --app
echo "${gl__ausgabe_ende}"
ausgefuehrte_syntax " flatpak list --app"
ende
;;