mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-11 05:33:55 -04:00
doc: foot.1: fix default path in -s,--server
The documentation incorrectly stated that the default path is $XDG_RUNTIME_DIR/foot.sock. The correct default path is * $XDG_RUNTIME_DIR/foot-$XDG_SESSION_ID.sock * $XDG_RUNTIME_DIR/foot-no-session.sock * /tmp/foot.sock Depending on whether XDG_RUNTIME_DIR and XDG_SESSION_ID has been set or not. This also removes the '<>' from the default when XDG_SESSION_ID is not set. Closes #53.
This commit is contained in:
parent
a026938547
commit
f3c301ee8b
3 changed files with 15 additions and 6 deletions
2
client.c
2
client.c
|
|
@ -176,7 +176,7 @@ main(int argc, char *const *argv)
|
|||
const char *xdg_runtime = getenv("XDG_RUNTIME_DIR");
|
||||
if (xdg_runtime != NULL) {
|
||||
if (xdg_session_id == NULL)
|
||||
xdg_session_id = "<no-session>";
|
||||
xdg_session_id = "no-session";
|
||||
|
||||
snprintf(addr.sun_path, sizeof(addr.sun_path), "%s/foot-%s.sock", xdg_runtime, xdg_session_id);
|
||||
if (connect(fd, (const struct sockaddr *)&addr, sizeof(addr)) == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue