1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00

Small tweak to print

This commit is contained in:
Dave Davenport 2015-07-29 18:16:06 +02:00
parent 5cea640a34
commit c0cb4df860

View file

@ -1829,7 +1829,6 @@ static int grab_global_keybindings ()
}
static void print_global_keybindings ()
{
fprintf ( stdout, "Rofi is launched in daemon mode.\n" );
fprintf ( stdout, "listening to the following keys:\n" );
for ( unsigned int i = 0; i < num_switchers; i++ ) {
if ( switchers[i]->keystr != NULL ) {
@ -2041,6 +2040,7 @@ int main ( int argc, char *argv[] )
return EXIT_FAILURE;
}
if ( !quiet ) {
fprintf ( stdout, "Rofi is launched in daemon mode.\n" );
print_global_keybindings ();
}