diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-07 20:06:26 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-07 20:57:58 +0900 |
| commit | 0e6c1a50260de141c50bb50fd3f2b2bcf9a3fe64 (patch) | |
| tree | dfe9c40ceb8c1be8d2728a2db9017bffef174d3d /internal/app/spwayland.go | |
| parent | d23b4dc9e64d3f00e746c65f3038a1a6de44b8f5 (diff) | |
container/check: move absolute pathname
This allows use of absolute pathname values without importing container.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/spwayland.go')
| -rw-r--r-- | internal/app/spwayland.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/app/spwayland.go b/internal/app/spwayland.go index 130a2ed2..91ce1ac3 100644 --- a/internal/app/spwayland.go +++ b/internal/app/spwayland.go @@ -1,7 +1,7 @@ package app import ( - "hakurei.app/container" + "hakurei.app/container/check" "hakurei.app/hst" "hakurei.app/system/acl" "hakurei.app/system/wayland" @@ -10,16 +10,16 @@ import ( // spWaylandOp exports the Wayland display server to the container. type spWaylandOp struct { // Path to host wayland socket. Populated during toSystem if DirectWayland is true. - SocketPath *container.Absolute + SocketPath *check.Absolute } func (s *spWaylandOp) toSystem(state *outcomeStateSys, config *hst.Config) error { // outer wayland socket (usually `/run/user/%d/wayland-%d`) - var socketPath *container.Absolute + var socketPath *check.Absolute if name, ok := state.k.lookupEnv(wayland.WaylandDisplay); !ok { state.msg.Verbose(wayland.WaylandDisplay + " is not set, assuming " + wayland.FallbackName) socketPath = state.sc.RuntimePath.Append(wayland.FallbackName) - } else if a, err := container.NewAbs(name); err != nil { + } else if a, err := check.NewAbs(name); err != nil { socketPath = state.sc.RuntimePath.Append(name) } else { socketPath = a |
