aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-05-05 20:03:46 +0100
committerLibravatar GitHub <noreply@github.com>2018-05-05 20:03:46 +0100
commit786727d8bbd00f44f1b29368a3579cbe6899ba16 (patch)
tree80579da473fb095b61a4693a1ab009d2fb6ea595 /sway/commands
parentsecurity.d: Update install paths for swaybar and swaybg (diff)
parentMerge pull request #1924 from nbraud/spelling (diff)
downloadsway-786727d8bbd00f44f1b29368a3579cbe6899ba16.tar.gz
sway-786727d8bbd00f44f1b29368a3579cbe6899ba16.tar.zst
sway-786727d8bbd00f44f1b29368a3579cbe6899ba16.zip
Merge branch 'master' into usr-lib
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/font.c6
-rw-r--r--sway/commands/title_format.c29
2 files changed, 30 insertions, 5 deletions
diff --git a/sway/commands/font.c b/sway/commands/font.c
index 38ad8880..8e0b51e3 100644
--- a/sway/commands/font.c
+++ b/sway/commands/font.c
@@ -2,7 +2,6 @@
2#include <string.h> 2#include <string.h>
3#include "sway/commands.h" 3#include "sway/commands.h"
4#include "sway/config.h" 4#include "sway/config.h"
5#include "sway/tree/arrange.h"
6#include "log.h" 5#include "log.h"
7#include "stringop.h" 6#include "stringop.h"
8 7
@@ -14,9 +13,6 @@ struct cmd_results *cmd_font(int argc, char **argv) {
14 char *font = join_args(argv, argc); 13 char *font = join_args(argv, argc);
15 free(config->font); 14 free(config->font);
16 config->font = strdup(font); 15 config->font = strdup(font);
17 config_find_font_height(true); 16 config_update_font_height(true);
18 if (!config->reading) {
19 arrange_root();
20 }
21 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 17 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
22} 18}
diff --git a/sway/commands/title_format.c b/sway/commands/title_format.c
new file mode 100644
index 00000000..3d1c578c
--- /dev/null
+++ b/sway/commands/title_format.c
@@ -0,0 +1,29 @@
1#define _POSIX_C_SOURCE 200809L
2#include <string.h>
3#include "sway/commands.h"
4#include "sway/config.h"
5#include "sway/tree/view.h"
6#include "log.h"
7#include "stringop.h"
8
9struct cmd_results *cmd_title_format(int argc, char **argv) {
10 struct cmd_results *error = NULL;
11 if ((error = checkarg(argc, "title_format", EXPECTED_AT_LEAST, 1))) {
12 return error;
13 }
14 struct sway_container *container =
15 config->handler_context.current_container;
16 if (container->type != C_VIEW) {
17 return cmd_results_new(CMD_INVALID, "title_format",
18 "Only views can have a title_format");
19 }
20 struct sway_view *view = container->sway_view;
21 char *format = join_args(argv, argc);
22 if (view->title_format) {
23 free(view->title_format);
24 }
25 view->title_format = format;
26 view_update_title(view, true);
27 config_update_font_height(true);
28 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
29}