| | 563 | | } | | | 564 | | | | | 565 | | void statusbar_config_init(void) | | | 566 | | { | | | 567 | | read_statusbar_config(); | | | 568 | | signal_add_last("setup reread", (SIGNAL_FUNC) read_statusbar_config);
| | | 569 | | signal_add("theme changed", (SIGNAL_FUNC) read_statusbar_config);
| | | 570 | | | | | 571 | | command_bind("statusbar", NULL, (SIGNAL_FUNC) cmd_statusbar);
| | | 572 | | command_bind("statusbar enable", NULL, (SIGNAL_FUNC) cmd_statusbar_enable);
| | Wrong Number of Parameters | 573 | | command_bind("statusbar disable", NULL, (SIGNAL_FUNC) cmd_statusbar_disable);
| | | 574 | | command_bind("statusbar reset", NULL, (SIGNAL_FUNC) cmd_statusbar_reset);
| | | 575 | | command_bind("statusbar add", NULL, (SIGNAL_FUNC) cmd_statusbar_add);
| | | 576 | | command_bind("statusbar remove", NULL, (SIGNAL_FUNC) cmd_statusbar_remove);
| | | 577 | | command_bind("statusbar type", NULL, (SIGNAL_FUNC) cmd_statusbar_type);
| | | 578 | | command_bind("statusbar placement", NULL, (SIGNAL_FUNC) cmd_statusbar_placement);
| | | 579 | | command_bind("statusbar position", NULL, (SIGNAL_FUNC) cmd_statusbar_position);
| | | 580 | | command_bind("statusbar visible", NULL, (SIGNAL_FUNC) cmd_statusbar_visible);
| | | 581 | | | | | 582 | | command_set_options("statusbar add", "+before +after +priority +alignment");
| | | 583 | | } |
|