Forrest logo
back to context overview

kdialog

List of commands for kdialog:

  • kdialog:ai:066e4 Takes user input for a date in the YYYY-MM-DD format using kdialog
    $ kdialog --dateformat '%Y-%m-%d' --getdate
    try on your machine
    explain this command
  • kdialog:tldr:00b47 kdialog: Open a warning dialog with a `yes`, `no`, and `cancel` button, returning `0`, `1`, or `2` respectively.
    $ kdialog --warningyesnocancel "${message}"
    try on your machine
    explain this command
  • kdialog:tldr:0d617 kdialog: Open a file chooser dialog and print the selected file's path to `stdout`.
    $ kdialog --getopenfilename
    try on your machine
    explain this command
  • kdialog:tldr:1c3f7 kdialog: Open a progressbar dialog and print a DBUS reference for communication to `stdout`.
    $ kdialog --progressbar "${message}"
    try on your machine
    explain this command
  • kdialog:tldr:70437 kdialog: Open a question dialog with a `yes` and `no` button, returning `0` and `1`, respectively.
    $ kdialog --yesno "${message}"
    try on your machine
    explain this command
  • kdialog:tldr:8a405 kdialog: Open a dialog containing a specific dropdown menu and print the selected item to `stdout`.
    $ kdialog --combobx "${message}" "${item1}" "${item2}" "${---}"
    try on your machine
    explain this command
  • kdialog:tldr:8e705 kdialog: Open a dialog to prompt for a specific password and print it to `stdout`.
    $ kdialog --password "${message}"
    try on your machine
    explain this command
  • kdialog:tldr:a0aa7 kdialog: Open a dialog box displaying a specific message.
    $ kdialog --msgbox "${message}" "${optional_detailed_message}"
    try on your machine
    explain this command
back to context overview