]> git.lizzy.rs Git - bspwm.git/commitdiff
Remove useless `reload_*` messages
authorBastien Dejean <nihilhill@gmail.com>
Tue, 12 Mar 2013 20:43:44 +0000 (21:43 +0100)
committerBastien Dejean <nihilhill@gmail.com>
Tue, 12 Mar 2013 20:43:44 +0000 (21:43 +0100)
README.md
bspwm.1
messages.c

index ee8e26ea84670ad20f6fe6a61ebbebd57294dead..10b4b78d76f2dabf5bd81db411c608e4456c427b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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.
diff --git a/bspwm.1 b/bspwm.1
index 69633947e3ab920fa8d5e80ead7eefbc13149707..23671559decf5731db5d9c9df8a1e468021756eb 100644 (file)
--- a/bspwm.1
+++ b/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
index 7f3bd8c00930cbd66d7603fe0c2e367e2225fe58..0dd30820d335528838f464337f14276f2006e0b4 100644 (file)
@@ -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);