summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 6ff9874..8467065 100644
--- a/src/main.c
+++ b/src/main.c
@@ -74,8 +74,6 @@ int main (int argc, char **argv) {
/* terminal attributes _before_ we started messing around with ~ECHO */
struct termios termOrig;
- BarUiMsg (MSG_NONE, "Welcome to " PACKAGE "!\n");
-
/* save terminal attributes, before disabling echoing */
BarTermSave (&termOrig);
@@ -92,6 +90,9 @@ int main (int argc, char **argv) {
BarSettingsInit (&settings);
BarSettingsRead (&settings);
+ BarUiMsg (MSG_NONE, "Welcome to " PACKAGE "! Press %c for a list of commands.\n",
+ settings.keys[BAR_KS_HELP]);
+
/* init fds */
FD_ZERO(&readSet);
selectFds[0] = fileno (stdin);