moved hyprland sockets to new locations

This commit is contained in:
Milarin 2024-05-16 18:26:35 +02:00
parent ce9bb69859
commit f7662457a9
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import (
)
func GetClient(signature string) (*Client, error) {
lockFilePath := fmt.Sprintf("/tmp/hypr/%s.lock", signature)
lockFilePath := fmt.Sprintf("/run/user/1000/hypr/%s/hyprland.lock", signature)
file, err := os.Open(lockFilePath)
if err != nil {
@ -50,7 +50,7 @@ func GetDefaultClient() (*Client, error) {
}
func GetClients() ([]*Client, error) {
entries, err := os.ReadDir("/tmp/hypr")
entries, err := os.ReadDir("/run/user/1000/hypr")
if err != nil {
return nil, err
}

View File

@ -17,9 +17,9 @@ func (c Client) String() string {
}
func (c Client) SocketPath() string {
return fmt.Sprintf("/tmp/hypr/%s/.socket.sock", c.Signature)
return fmt.Sprintf("/run/user/1000/hypr/%s/.socket.sock", c.Signature)
}
func (c Client) EventSocketPath() string {
return fmt.Sprintf("/tmp/hypr/%s/.socket2.sock", c.Signature)
return fmt.Sprintf("/run/user/1000/hypr/%s/.socket2.sock", c.Signature)
}