mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
export SSH_AUTH_SOCK="$HOME/.local/state/ssh-agent/socket"
|
|
|
|
if [ -n "${TURNSTILE_ENV_DIR:-}" ]; then
|
|
exec chpst -e "$TURNSTILE_ENV_DIR" emacs --fg-daemon
|
|
fi
|
|
|
|
exec emacs --fg-daemon
|