(cfg: Dict)
| 1925 | |
| 1926 | |
| 1927 | def action_extras_menu(cfg: Dict) -> None: |
| 1928 | installed = get_installed_distros() |
| 1929 | print("\n" + tr(cfg, "installed")) |
| 1930 | if not installed: |
| 1931 | print(" " + tr(cfg, "none_installed")) |
| 1932 | pause(cfg) |
| 1933 | return |
| 1934 | distro = pick_from_list(tr(cfg, "pick_system"), installed) |
| 1935 | if not distro: |
| 1936 | print(tr(cfg, "invalid")) |
| 1937 | pause(cfg) |
| 1938 | return |
| 1939 | ensure_system_entry(cfg, distro) |
| 1940 | install_recommended_extras(cfg, distro) |
| 1941 | pause(cfg) |
| 1942 | |
| 1943 | def action_launcher(cfg: Dict) -> None: |
| 1944 | installed = get_installed_distros() |
no test coverage detected