From 3afca2bd5b58645ad503bc8ef6dfa4f05d2e01e0 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 17 Nov 2025 01:45:10 +0900 Subject: internal/wayland: expose WAYLAND_VERSION This might be useful troubleshooting information. Signed-off-by: Ophestra --- cmd/hakurei/print.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'cmd') diff --git a/cmd/hakurei/print.go b/cmd/hakurei/print.go index 7e3400a2..7ce51f47 100644 --- a/cmd/hakurei/print.go +++ b/cmd/hakurei/print.go @@ -12,8 +12,6 @@ import ( "time" "hakurei.app/hst" - "hakurei.app/internal/env" - "hakurei.app/internal/info" "hakurei.app/internal/outcome" "hakurei.app/internal/store" "hakurei.app/message" @@ -23,16 +21,14 @@ import ( func printShowSystem(output io.Writer, short, flagJSON bool) { t := newPrinter(output) defer t.MustFlush() - - hi := &hst.Info{Version: info.Version(), User: new(outcome.Hsu).MustID(nil)} - env.CopyPaths().Copy(&hi.Paths, hi.User) + hi := outcome.Info() if flagJSON { encodeJSON(log.Fatal, output, short, hi) return } - t.Printf("Version:\t%s\n", hi.Version) + t.Printf("Version:\t%s (libwayland %s)\n", hi.Version, hi.WaylandVersion) t.Printf("User:\t%d\n", hi.User) t.Printf("TempDir:\t%s\n", hi.TempDir) t.Printf("SharePath:\t%s\n", hi.SharePath) -- cgit v1.3.1