aboutsummaryrefslogtreecommitdiff
path: root/swaybar/ipc.c
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-04-24 00:25:49 -0400
committerDrew DeVault <sir@cmpwn.com>2019-04-24 07:14:48 -0600
commit583ceff6f6129b5c569ad1eb499cffc526a14d1c (patch)
treebffca87361c63ccf1227436a7437b5ea4d5a0902 /swaybar/ipc.c
parentb6e55064fe2422bcf2694a2ce97899108a75f077 (diff)
swaybar: hide mode visibility improvements
This allows swaybar to become visible when the mode changes (to any mode other than the default). swaybar will be hidden again when the modifier is pressed and released or when switching back to the default mode. This also applies the same logic to visible by urgency to hide swaybar when the modifier is pressed and released. These changes are to match i3's behavior.
Diffstat (limited to 'swaybar/ipc.c')
-rw-r--r--swaybar/ipc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/swaybar/ipc.c b/swaybar/ipc.c
index 1cc55b43..a096f01a 100644
--- a/swaybar/ipc.c
+++ b/swaybar/ipc.c
@@ -499,6 +499,13 @@ static bool handle_bar_state_update(struct swaybar *bar, json_object *event) {
json_object *visible_by_modifier;
json_object_object_get_ex(event, "visible_by_modifier", &visible_by_modifier);
bar->visible_by_modifier = json_object_get_boolean(visible_by_modifier);
+ if (bar->visible_by_modifier) {
+ // If the bar is visible by modifier, clear both visible by mode and
+ // urgency as modifier has precedence and the bar should be hidden
+ // again when it is no longer visible by modifier.
+ bar->visible_by_mode = false;
+ bar->visible_by_urgency = false;
+ }
return determine_bar_visibility(bar, false);
}
@@ -578,6 +585,8 @@ bool handle_ipc_readable(struct swaybar *bar) {
const char *change = json_object_get_string(json_change);
free(bar->mode);
bar->mode = strcmp(change, "default") != 0 ? strdup(change) : NULL;
+ bar->visible_by_mode = bar->mode != NULL;
+ determine_bar_visibility(bar, false);
} else {
sway_log(SWAY_ERROR, "failed to parse response");
bar_is_dirty = false;