mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
19 lines
325 B
Bash
Executable File
19 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if ! command -v turnstile-update-runit-env >/dev/null 2>&1; then
|
|
exit 0
|
|
fi
|
|
|
|
turnstile-update-runit-env \
|
|
DISPLAY \
|
|
WAYLAND_DISPLAY \
|
|
XAUTHORITY \
|
|
DBUS_SESSION_BUS_ADDRESS \
|
|
SSH_AUTH_SOCK \
|
|
XDG_CURRENT_DESKTOP \
|
|
XDG_SESSION_DESKTOP \
|
|
XDG_SESSION_TYPE \
|
|
SWAYSOCK >/dev/null 2>&1 || true
|