mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Add get_clipbard ipc errors; Adapt swaymsg
Also increase the get_clipboard timeout to 30 secs
This commit is contained in:
parent
20888fbb5e
commit
1cca551c6f
2 changed files with 47 additions and 18 deletions
|
@ -160,10 +160,22 @@ static void pretty_print_clipboard(json_object *v) {
|
|||
struct json_object_iterator iter = json_object_iter_begin(v);
|
||||
struct json_object_iterator end = json_object_iter_end(v);
|
||||
if (!json_object_iter_equal(&iter, &end)) {
|
||||
printf("%s\n", json_object_get_string(
|
||||
json_object_iter_peek_value(&iter)));
|
||||
json_object *obj = json_object_iter_peek_value(&iter);
|
||||
if (success(obj, false)) {
|
||||
json_object *content;
|
||||
json_object_object_get_ex(obj, "content", &content);
|
||||
printf("%s\n", json_object_get_string(content));
|
||||
} else {
|
||||
json_object *error;
|
||||
json_object_object_get_ex(obj, "error", &error);
|
||||
printf("Error: %s\n", json_object_get_string(error));
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
json_object *error;
|
||||
json_object_object_get_ex(v, "error", &error);
|
||||
printf("Error: %s\n", json_object_get_string(error));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue