| 1985 | print(tr(cfg, "invalid")) |
| 1986 | |
| 1987 | def action_help(cfg: Dict) -> None: |
| 1988 | print("\n" + tr(cfg, "help_title")) |
| 1989 | print("-" * 70) |
| 1990 | print("\nVNC:") |
| 1991 | print(" - Start: vnc-<system> start (or menu -> VNC Options)") |
| 1992 | print(" - Stop : vnc-<system> stop") |
| 1993 | print(" - Ports: :1 -> 5901, :2 -> 5902 ...") |
| 1994 | print(" - Default is localhost-only (safe). Enable LAN only if you set a strong password.") |
| 1995 | print("\nTermux:X11:") |
| 1996 | print(" - Install + open Termux:X11 Android app") |
| 1997 | print(" - In this menu: X11 Options -> Install packages -> Start desktop") |
| 1998 | print("\nPrograms:") |
| 1999 | print(" - Use Programs menu to install/remove common apps.") |
| 2000 | print(" - Some packages may not exist on very small distros; try a major distro like ubuntu/debian/fedora.") |
| 2001 | pause(cfg) |
| 2002 | |
| 2003 | # ---------------------------- |
| 2004 | # Main |