Compare commits

...

2 Commits

Author SHA1 Message Date
13a1346c39 check reachability once at method call 2024-12-12 20:35:28 +01:00
5e1ba06ebe fixed missing negation in WaitForClient 2024-08-26 22:00:04 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -21,6 +21,10 @@ func (c *Client) IsReachable() bool {
// and returns true as soon as IsReachable returns true.
// When ctx is closed before Hyprland is reachable, false is returned
func (c *Client) WaitUntilReachable(ctx context.Context) bool {
if c.IsReachable() {
return true
}
ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop()

View File

@ -96,7 +96,7 @@ func WaitForClient(ctx context.Context, signature string) (*Client, error) {
return nil, err
}
if client.WaitUntilReachable(context.Background()) {
if !client.WaitUntilReachable(context.Background()) {
return nil, errors.New("hyprland not reachable")
}