Home
last modified time | relevance | path

Searched refs:xdg_runtime (Results 1 – 7 of 7) sorted by relevance

/dports/x11/fnott/fnott/
H A Dfnottctl.c132 const char *xdg_runtime = getenv("XDG_RUNTIME_DIR"); in main() local
133 if (xdg_runtime != NULL) { in main()
137 "%s/fnott-%s.sock", xdg_runtime, wayland_display); in main()
140 "%s/fnott.sock", xdg_runtime); in main()
H A Dctrl.c266 const char *xdg_runtime = getenv("XDG_RUNTIME_DIR"); in get_socket_path() local
267 if (xdg_runtime == NULL) in get_socket_path()
272 char *path = malloc(strlen(xdg_runtime) + 1 + strlen("fnott.sock") + 1); in get_socket_path()
273 sprintf(path, "%s/fnott.sock", xdg_runtime); in get_socket_path()
277 …char *path = malloc(strlen(xdg_runtime) + 1 + strlen("fnott-.sock") + strlen(wayland_display) + 1); in get_socket_path()
278 sprintf(path, "%s/fnott-%s.sock", xdg_runtime, wayland_display); in get_socket_path()
/dports/shells/fish/fish-3.3.1/cmake/
H A DTests.cmake74 COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/xdg_runtime
75 COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_DIR}/xdg_runtime
89 XDG_RUNTIME_DIR=${CMAKE_CURRENT_BINARY_DIR}/test/xdg_runtime
101 XDG_RUNTIME_DIR=${CMAKE_CURRENT_BINARY_DIR}/test/xdg_runtime
111 XDG_RUNTIME_DIR=${CMAKE_CURRENT_BINARY_DIR}/test/xdg_runtime
/dports/x11-toolkits/gtk-layer-shell/gtk-layer-shell-0.7.0/test/
H A Drun-integration-test.py181 def run_test(name: str, server_args: List[str], client_args: List[str], xdg_runtime: str, wayland_d…
187 env['XDG_RUNTIME_DIR'] = xdg_runtime
194 wait_until_appears(path.join(xdg_runtime, wayland_display))
246 xdg_runtime = get_xdg_runtime_dir()
248 … client_stderr = run_test(name, [server_bin], [client_bin, '--auto'], xdg_runtime, wayland_display)
/dports/x11/foot/foot/
H A Dclient.c334 const char *xdg_runtime = getenv("XDG_RUNTIME_DIR"); in main() local
335 if (xdg_runtime != NULL) { in main()
339 "%s/foot-%s.sock", xdg_runtime, wayland_display); in main()
342 "%s/foot.sock", xdg_runtime); in main()
H A Dconfig.c2564 const char *xdg_runtime = getenv("XDG_RUNTIME_DIR"); in get_server_socket_path() local
2565 if (xdg_runtime == NULL) in get_server_socket_path()
2570 return xasprintf("%s/foot.sock", xdg_runtime); in get_server_socket_path()
2573 return xasprintf("%s/foot-%s.sock", xdg_runtime, wayland_display); in get_server_socket_path()
/dports/graphics/weston/weston-1.9.0/src/
H A Dweston-launch.c916 char *xdg_runtime = getenv("XDG_RUNTIME_DIR"); local
929 setenv("XDG_RUNTIME_DIR", xdg_runtime, 1);