Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • I'd like to note that I put the line TERMINAL=$(tty) at the top of my script and then in the CHOICE variable definition I changed 2>&1 >/dev/tty to 2>&1 >$TERMINAL to avoid redirection issues if the script was run in a different terminal context. Commented Jun 12, 2018 at 14:37
  • 1
    What does the --backtitle parameter do? Commented Aug 31, 2018 at 23:22
  • 2
    It’s the title of the bluescreen in the background. You can see it in the top left corner of the screenshot that reads “Backtitle here”. Commented Aug 31, 2018 at 23:25
  • 2
    Note that dialog is not universally available on all Linux systems. Even though it looks kinda cool, your script might not be compatible across different systems/releases/distributions. Commented Feb 11, 2021 at 19:01