mirror of
https://github.com/vale981/bspwm
synced 2025-03-04 17:31:39 -05:00
Remove useless reload_*
messages
This commit is contained in:
parent
b273b9c9bd
commit
f7e38e44a7
3 changed files with 0 additions and 14 deletions
|
@ -179,10 +179,6 @@ The following messages are handled:
|
|||
|
||||
- `adopt_orphans` — Manage all the unmanaged windows remaining from a previous session.
|
||||
|
||||
- `reload_autostart` — Reload the autostart file.
|
||||
|
||||
- `reload_settings` — Reload the default settings.
|
||||
|
||||
- `restore FILE_PATH` — Restore the layout of each desktop from the content of `FILE_PATH`.
|
||||
|
||||
- `quit [EXIT_STATUS]` — Quit.
|
||||
|
|
6
bspwm.1
6
bspwm.1
|
@ -257,12 +257,6 @@ Remove the rules with the given UIDs.
|
|||
.BI adopt_orphans
|
||||
Manage all the unmanaged windows remaining from a previous session.
|
||||
.TP
|
||||
.BI reload_autostart
|
||||
Reload the autostart file.
|
||||
.TP
|
||||
.BI reload_settings
|
||||
Reload the default settings.
|
||||
.TP
|
||||
.BI restore " FILE_PATH"
|
||||
Restore the layout of each desktop from the content of FILE_PATH.
|
||||
.TP
|
||||
|
|
|
@ -425,10 +425,6 @@ void process_message(char *msg, char *rsp)
|
|||
return;
|
||||
} else if (strcmp(cmd, "adopt_orphans") == 0) {
|
||||
adopt_orphans();
|
||||
} else if (strcmp(cmd, "reload_autostart") == 0) {
|
||||
run_autostart();
|
||||
} else if (strcmp(cmd, "reload_settings") == 0) {
|
||||
load_settings();
|
||||
} else if (strcmp(cmd, "restore") == 0) {
|
||||
char *arg = strtok(NULL, TOK_SEP);
|
||||
restore(arg);
|
||||
|
|
Loading…
Add table
Reference in a new issue