Compare commits

..

3 Commits

2 changed files with 6 additions and 2 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

@ -82,7 +82,7 @@ func WaitForDefaultClient(ctx context.Context) (*Client, error) {
func WaitForClient(ctx context.Context, signature string) (*Client, error) {
lockFilePath := fmt.Sprintf("/run/user/1000/hypr/%s/hyprland.lock", signature)
lockFileExists := !waitFor(ctx, func() bool {
lockFileExists := waitFor(ctx, func() bool {
_, err := os.Stat(lockFilePath)
return !errors.Is(err, os.ErrNotExist)
})
@ -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")
}