aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/bar/id.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/id.c')
-rw-r--r--sway/commands/bar/id.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/sway/commands/bar/id.c b/sway/commands/bar/id.c
deleted file mode 100644
index 1221ebf6..00000000
--- a/sway/commands/bar/id.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#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
- int i;
- for (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);
- }
- }
-
- sway_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);
-}