Forrest logo
back to context overview

zenity

List of commands for zenity:

  • zenity:tldr:1f580 zenity: Display a file selection form in which the user can only select directories.
    $ zenity --file-selection --directory
    try on your machine
    explain this command
  • zenity:tldr:253b9 zenity: Display a name/password form and output the data separated by ";".
    $ zenity --forms --add-entry="${Name}" --add-password="${Password}" --separator="${;}"
    try on your machine
    explain this command
  • zenity:tldr:80f38 zenity: Display a progress bar which updates its message every second and show a progress percent.
    $ ${(echo "#1"; sleep 1; echo "50"; echo "#2"; sleep 1; echo "100")} | zenity --progress
    try on your machine
    explain this command
  • zenity:tldr:9fbb1 zenity: Display the default question dialog.
    $ zenity --question
    try on your machine
    explain this command
  • zenity:tldr:cbb43 zenity: Display an info dialog displaying the text "Hello!".
    $ zenity --info --text="${Hello!}"
    try on your machine
    explain this command
back to context overview