3

For example, with the tool 'needrestart' in interactive mode, it creates an option dialog after a system update. But i dont understand how to select or deselect options. I cannot seem to even find the term for this popup, much less an article describing how to use it.

for reference im talking about the dialog box shown here as well: apt-get upgrade auto restart services

e: using tuxedoOS, so ubuntu 23 LTS + kde rolling (iirc)

Teh
  • 45

1 Answers1

4

Such menus are usually created using ncurses. I don't really know where this is documented, I'm afraid, but usually, they work like this:

  • Up and Down arrow keys to move up and down.
  • Space to select/deselect options.
  • Tab to cycle through menu sections (e.g. to move to the OK or Cancel options in the screenshot you linked to).
  • Enter to activate the selected option (e.g. to "click" on the OK).
terdon
  • 104,119