sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a8402035e910efc0ee702bb75a1ea5bfed1287bb
parent 95e0f44c73f2783541b180c9bd555f6b8abb7c0f
Author: Mikkel Oscar Lyderik <mikkeloscar@gmail.com>
Date:   Tue,  5 Jan 2016 18:22:25 +0100

Add modifier key to bar_config json

Diffstat:
Msway/ipc-server.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/ipc-server.c b/sway/ipc-server.c @@ -511,7 +511,7 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) { json_object_object_add(json, "tray_output", NULL); json_object_object_add(json, "mode", json_object_new_string(bar->mode)); json_object_object_add(json, "hidden_state", json_object_new_string(bar->hidden_state)); - //json_object_object_add(json, "modifier", json_object_new_string(bar->modifier)); // TODO: Fix modifier + json_object_object_add(json, "modifier", json_object_new_string(get_modifier_name_by_mask(bar->modifier))); switch (bar->position) { case DESKTOP_SHELL_PANEL_POSITION_TOP: json_object_object_add(json, "position", json_object_new_string("top"));