diff options
Diffstat (limited to 'src/ui/console.c')
-rw-r--r-- | src/ui/console.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index c104e21b..43cad63d 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -1183,6 +1183,15 @@ cons_flash_setting(void) } void +cons_tray_setting(void) +{ + if (prefs_get_boolean(PREF_TRAY)) + cons_show("Tray icon (/tray) : ON"); + else + cons_show("Tray icon (/tray) : OFF"); +} + +void cons_splash_setting(void) { if (prefs_get_boolean(PREF_SPLASH)) @@ -1611,6 +1620,7 @@ cons_show_desktop_prefs(void) cons_show("Desktop notification preferences:"); cons_show(""); cons_notify_setting(); + cons_tray_setting(); cons_alert(); } |