Compare commits
2 Commits
faf807cb86
...
f7662457a9
Author | SHA1 | Date | |
---|---|---|---|
f7662457a9 | |||
ce9bb69859 |
@ -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
|
||||
}
|
||||
|
@ -31,8 +31,10 @@ const (
|
||||
EventTypeActiveWindowV2 EventType = "activewindowv2"
|
||||
EventTypeKeyboardFocus EventType = "keyboardfocus"
|
||||
EventTypeMoveWorkspace EventType = "moveworkspace"
|
||||
EventTypeMoveWorkspaceV2 EventType = "moveworkspacev2"
|
||||
EventTypeFocusedMon EventType = "focusedmon"
|
||||
EventTypeMoveWindow EventType = "movewindow"
|
||||
EventTypeMoveWindowV2 EventType = "movewindowv2"
|
||||
EventTypeOpenLayer EventType = "openlayer"
|
||||
EventTypeCloseLayer EventType = "closelayer"
|
||||
EventTypeOpenWindow EventType = "openwindow"
|
||||
@ -40,12 +42,16 @@ const (
|
||||
EventTypeUrgent EventType = "urgent"
|
||||
EventTypeMinimize EventType = "minimize"
|
||||
EventTypeMonitorAdded EventType = "monitoradded"
|
||||
EventTypeMonitorAddedV2 EventType = "monitoraddedv2"
|
||||
EventTypeMonitorRemoved EventType = "monitorremoved"
|
||||
EventTypeCreateWorkspace EventType = "createworkspace"
|
||||
EventTypeCreateWorkspaceV2 EventType = "createworkspacev2"
|
||||
EventTypeDestroyWorkspace EventType = "destroyworkspace"
|
||||
EventTypeDestroyWorkspaceV2 EventType = "destroyworkspacev2"
|
||||
EventTypeFullscreen EventType = "fullscreen"
|
||||
EventTypeChangeFloatingMode EventType = "changefloatingmode"
|
||||
EventTypeWorkspace EventType = "workspace"
|
||||
EventTypeWorkspaceV2 EventType = "workspacev2"
|
||||
EventTypeSubmap EventType = "submap"
|
||||
EventTypeMouseMove EventType = "mousemove"
|
||||
EventTypeMouseButton EventType = "mousebutton"
|
||||
|
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user