about summary refs log tree commit diff stats
path: root/src/command/cmd_funcs.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2019-11-05 20:51:27 +0100
committerMichael Vetter <jubalh@iodoru.org>2019-11-05 20:51:27 +0100
commit3d272f02bce39babe943a71bf6df4d9539fc787c (patch)
tree8d95e581f7c71723ac3a64bcf67ed76c793d0632 /src/command/cmd_funcs.c
parentfc6f2755c1cb65436df1a1e2a12e6f2de99183a9 (diff)
downloadprofani-tty-3d272f02bce39babe943a71bf6df4d9539fc787c.tar.gz
Add `/titlebar show resource` command
Additionally to `/resource titlebar on` we now allow the setting via
/titlebar show|hide resource` since it's about the titlebar.

But makes sense to have it in `/resource` too because there is
`/resource message on|off` too. And this one doesnt have an setting of
it's own.

Regards https://github.com/profanity-im/profanity/issues/1116
Diffstat (limited to 'src/command/cmd_funcs.c')
-rw-r--r--src/command/cmd_funcs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c
index 5eec7016..32474650 100644
--- a/src/command/cmd_funcs.c
+++ b/src/command/cmd_funcs.c
@@ -3136,7 +3136,6 @@ cmd_blocked(ProfWin *window, const char *const command, gchar **args)
     return TRUE;
 }
 
-
 gboolean
 cmd_resource(ProfWin *window, const char *const command, gchar **args)
 {
@@ -5958,6 +5957,9 @@ cmd_titlebar_show_hide(ProfWin *window, const char *const command, gchar **args)
             } else if (g_strcmp0(args[1], "encwarn") == 0) {
                 cons_show("Encryption warning titlebar indicator enabled.");
                 prefs_set_boolean(PREF_ENC_WARN, TRUE);
+            } else if (g_strcmp0(args[1], "resource") == 0) {
+                cons_show("Showing resource in titlebar enabled.");
+                prefs_set_boolean(PREF_RESOURCE_TITLE , TRUE);
             } else {
                 cons_bad_cmd_usage(command);
             }
@@ -5969,6 +5971,9 @@ cmd_titlebar_show_hide(ProfWin *window, const char *const command, gchar **args)
             } else if (g_strcmp0(args[1], "encwarn") == 0) {
                 cons_show("Encryption warning titlebar indicator disabled.");
                 prefs_set_boolean(PREF_ENC_WARN, FALSE);
+            } else if (g_strcmp0(args[1], "resource") == 0) {
+                cons_show("Showing resource in titlebar disabled.");
+                prefs_set_boolean(PREF_RESOURCE_TITLE , FALSE);
             } else {
                 cons_bad_cmd_usage(command);
             }