mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Update to new Sway IPC protocol
This commit is contained in:
parent
c051b517ca
commit
3a5a470d90
@ -122,7 +122,7 @@ struct waybar::modules::sway::Ipc::ipc_response
|
|||||||
void waybar::modules::sway::Ipc::subscribe(const std::string& payload) const
|
void waybar::modules::sway::Ipc::subscribe(const std::string& payload) const
|
||||||
{
|
{
|
||||||
auto res = send(fd_event_, IPC_SUBSCRIBE, payload);
|
auto res = send(fd_event_, IPC_SUBSCRIBE, payload);
|
||||||
if (res.payload != "{\"success\": true}") {
|
if (res.payload != "{\"success\": true}" && res.payload != "[{\"success\": true}]") {
|
||||||
throw std::runtime_error("Unable to subscribe ipc event");
|
throw std::runtime_error("Unable to subscribe ipc event");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -131,4 +131,4 @@ struct waybar::modules::sway::Ipc::ipc_response
|
|||||||
waybar::modules::sway::Ipc::handleEvent() const
|
waybar::modules::sway::Ipc::handleEvent() const
|
||||||
{
|
{
|
||||||
return recv(fd_event_);
|
return recv(fd_event_);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user