mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 09:51:38 -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.
|
- `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`.
|
- `restore FILE_PATH` — Restore the layout of each desktop from the content of `FILE_PATH`.
|
||||||
|
|
||||||
- `quit [EXIT_STATUS]` — Quit.
|
- `quit [EXIT_STATUS]` — Quit.
|
||||||
|
|
6
bspwm.1
6
bspwm.1
|
@ -257,12 +257,6 @@ Remove the rules with the given UIDs.
|
||||||
.BI adopt_orphans
|
.BI adopt_orphans
|
||||||
Manage all the unmanaged windows remaining from a previous session.
|
Manage all the unmanaged windows remaining from a previous session.
|
||||||
.TP
|
.TP
|
||||||
.BI reload_autostart
|
|
||||||
Reload the autostart file.
|
|
||||||
.TP
|
|
||||||
.BI reload_settings
|
|
||||||
Reload the default settings.
|
|
||||||
.TP
|
|
||||||
.BI restore " FILE_PATH"
|
.BI restore " FILE_PATH"
|
||||||
Restore the layout of each desktop from the content of FILE_PATH.
|
Restore the layout of each desktop from the content of FILE_PATH.
|
||||||
.TP
|
.TP
|
||||||
|
|
|
@ -425,10 +425,6 @@ void process_message(char *msg, char *rsp)
|
||||||
return;
|
return;
|
||||||
} else if (strcmp(cmd, "adopt_orphans") == 0) {
|
} else if (strcmp(cmd, "adopt_orphans") == 0) {
|
||||||
adopt_orphans();
|
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) {
|
} else if (strcmp(cmd, "restore") == 0) {
|
||||||
char *arg = strtok(NULL, TOK_SEP);
|
char *arg = strtok(NULL, TOK_SEP);
|
||||||
restore(arg);
|
restore(arg);
|
||||||
|
|
Loading…
Add table
Reference in a new issue