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