about summary refs log tree commit diff stats
path: root/src/command/commands.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-02-26 00:49:21 +0000
committerJames Booth <boothj5@gmail.com>2015-02-26 00:49:21 +0000
commitcbdfc09a84ba80dce2199447b2b59f0d5866e3a4 (patch)
treec37b93e65a4036d6e3da85589632e4214fd14420 /src/command/commands.c
parent22daac5fe9a0b2121deca57ea42e4094b288fb8c (diff)
downloadprofani-tty-cbdfc09a84ba80dce2199447b2b59f0d5866e3a4.tar.gz
Renamed /theme set -> /theme load
Diffstat (limited to 'src/command/commands.c')
-rw-r--r--src/command/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index 63cdedf7..18f8bf69 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -822,7 +822,7 @@ cmd_theme(gchar **args, struct cmd_help_t help)
         g_slist_free_full(themes, g_free);
 
     // load a theme
-    } else if (g_strcmp0(args[0], "set") == 0) {
+    } else if (g_strcmp0(args[0], "load") == 0) {
         if (args[1] == NULL) {
             cons_show("Usage: %s", help.usage);
         } else if (theme_load(args[1])) {