summaryrefslogtreecommitdiff
path: root/sway/commands/bar/id.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-03-30 00:11:00 -0400
committerGitHub <[email protected]>2018-03-30 00:11:00 -0400
commit9d7f47746cdcb0eed3cf41875d06a8ef238eef1c (patch)
tree997658454de40db3f8b76b68d658efaf2b686188 /sway/commands/bar/id.c
parent7162b9bea4d66d61376ad3605e23e2d83bb95201 (diff)
parentf26ecd9f58bb672fe107660ce9b37f4bf0777a8c (diff)
Merge pull request #1648 from swaywm/swaybar-layers
Port swaybar to layer shell
Diffstat (limited to 'sway/commands/bar/id.c')
-rw-r--r--sway/commands/bar/id.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/sway/commands/bar/id.c b/sway/commands/bar/id.c
new file mode 100644
index 00000000..c1e56f03
--- /dev/null
+++ b/sway/commands/bar/id.c
@@ -0,0 +1,30 @@
+#define _XOPEN_SOURCE 500
+#include <string.h>
+#include "sway/commands.h"
+#include "log.h"
+
+struct cmd_results *bar_cmd_id(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if ((error = checkarg(argc, "id", EXPECTED_EQUAL_TO, 1))) {
+ return error;
+ }
+
+ const char *name = argv[0];
+ const char *oldname = config->current_bar->id;
+ // check if id is used by a previously defined bar
+ for (int i = 0; i < config->bars->length; ++i) {
+ struct bar_config *find = config->bars->items[i];
+ if (strcmp(name, find->id) == 0 && config->current_bar != find) {
+ return cmd_results_new(CMD_FAILURE, "id",
+ "Id '%s' already defined for another bar. Id unchanged (%s).",
+ name, oldname);
+ }
+ }
+
+ wlr_log(L_DEBUG, "Renaming bar: '%s' to '%s'", oldname, name);
+
+ // free old bar id
+ free(config->current_bar->id);
+ config->current_bar->id = strdup(name);
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}