moved hyprland sockets to new locations
This commit is contained in:
parent
ce9bb69859
commit
f7662457a9
@ -13,7 +13,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func GetClient(signature string) (*Client, error) {
|
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)
|
file, err := os.Open(lockFilePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -50,7 +50,7 @@ func GetDefaultClient() (*Client, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func GetClients() ([]*Client, error) {
|
func GetClients() ([]*Client, error) {
|
||||||
entries, err := os.ReadDir("/tmp/hypr")
|
entries, err := os.ReadDir("/run/user/1000/hypr")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -17,9 +17,9 @@ func (c Client) String() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c Client) SocketPath() 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 {
|
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)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user