aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/wl/consts.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-02 21:52:07 +0900
committerOphestra <cat@gensokyo.uk>2025-07-02 21:52:07 +0900
commit82561d62b66f17c05604e87f18187bb3a91f00d2 (patch)
treec1543f85b4458b7d5cb2cf7b1baa9dee318debfe /sandbox/wl/consts.go
parenteec021cc4b4eb42bc9c8311755826828bfba1996 (diff)
system: move system access packages
These packages loosely belong in the "system" package and "system" provides high level wrappers for all of them. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'sandbox/wl/consts.go')
-rw-r--r--sandbox/wl/consts.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/sandbox/wl/consts.go b/sandbox/wl/consts.go
deleted file mode 100644
index 2ad4028c..00000000
--- a/sandbox/wl/consts.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package wl
-
-const (
- // WaylandDisplay contains the name of the server socket
- // (https://gitlab.freedesktop.org/wayland/wayland/-/blob/1.23.1/src/wayland-client.c#L1147)
- // which is concatenated with XDG_RUNTIME_DIR
- // (https://gitlab.freedesktop.org/wayland/wayland/-/blob/1.23.1/src/wayland-client.c#L1171)
- // or used as-is if absolute
- // (https://gitlab.freedesktop.org/wayland/wayland/-/blob/1.23.1/src/wayland-client.c#L1176).
- WaylandDisplay = "WAYLAND_DISPLAY"
-
- // FallbackName is used as the wayland socket name if WAYLAND_DISPLAY is unset
- // (https://gitlab.freedesktop.org/wayland/wayland/-/blob/1.23.1/src/wayland-client.c#L1149).
- FallbackName = "wayland-0"
-)