| 206 | } |
| 207 | |
| 208 | static void print_no_modules_selected(void) |
| 209 | { |
| 210 | int height = getmaxy(stdscr); |
| 211 | |
| 212 | for (size_t i = 0; i < ARRAY_SIZE(categories); i++) |
| 213 | if (categories[i].count > 0) |
| 214 | return; |
| 215 | |
| 216 | color_set(2, NULL); // White on black |
| 217 | center(height / 2, "No modules selected"); |
| 218 | } |
| 219 | |
| 220 | static int first_nonempty_category(void) |
| 221 | { |