| | 581 | | |
| | 582 | | command_set_options("statusbar add", "+before +after +priority +alignment");
|
| | 583 | | } |
| | 584 | | |
| | 585 | | void statusbar_config_deinit(void) |
| | 586 | | { |
| | 587 | | signal_remove("setup reread", (SIGNAL_FUNC) read_statusbar_config);
|
| | 588 | | signal_remove("theme changed", (SIGNAL_FUNC) read_statusbar_config);
|
| | 589 | | |
| | 590 | | command_unbind("statusbar", (SIGNAL_FUNC) cmd_statusbar);
|
| Wrong Number of Parameters | 591 | | command_unbind("statusbar enable", (SIGNAL_FUNC) cmd_statusbar_enable);
|
| | 592 | | command_unbind("statusbar disable", (SIGNAL_FUNC) cmd_statusbar_disable);
|
| | 593 | | command_unbind("statusbar reset", (SIGNAL_FUNC) cmd_statusbar_reset);
|
| | 594 | | command_unbind("statusbar add", (SIGNAL_FUNC) cmd_statusbar_add);
|
| | 595 | | command_unbind("statusbar remove", (SIGNAL_FUNC) cmd_statusbar_remove);
|
| | 596 | | command_unbind("statusbar type", (SIGNAL_FUNC) cmd_statusbar_type);
|
| | 597 | | command_unbind("statusbar placement", (SIGNAL_FUNC) cmd_statusbar_placement);
|
| | 598 | | command_unbind("statusbar position", (SIGNAL_FUNC) cmd_statusbar_position);
|
| | 599 | | command_unbind("statusbar visible", (SIGNAL_FUNC) cmd_statusbar_visible);
|
| | 600 | | } |