aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/bar/id.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-06-02 08:09:18 -0700
committerGitHub <noreply@github.com>2018-06-02 08:09:18 -0700
commitb0f2fd94791708a84aac2eccc57855a4ce8b6ec0 (patch)
tree919f22247b71c5562b3c1caff4f0bfa9dfcf0528 /sway/commands/bar/id.c
parent2d480e754e8287ba747faf1b21d8ecb927d565a1 (diff)
parent85a5c8dabd2561dfe616bea50faf2549e8cb345e (diff)
Merge pull request #2070 from RedSoxFan/generic-config-blocks
Make command block implementation generic
Diffstat (limited to 'sway/commands/bar/id.c')
-rw-r--r--sway/commands/bar/id.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/commands/bar/id.c b/sway/commands/bar/id.c
index c1e56f03..6ce86fef 100644
--- a/sway/commands/bar/id.c
+++ b/sway/commands/bar/id.c
@@ -11,6 +11,9 @@ struct cmd_results *bar_cmd_id(int argc, char **argv) {
const char *name = argv[0];
const char *oldname = config->current_bar->id;
+ if (strcmp(name, oldname) == 0) {
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL); // NOP
+ }
// 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];