blob: 05c20f44dca24e3a1dd947e6969ee2a7a11c8b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/dash
export XDG_RUNTIME_DIR="/tmp/hyprland"
mkdir -p $XDG_RUNTIME_DIR
chmod 0700 $XDG_RUNTIME_DIR
gpg-connect-agent updatestartuptty /bye >/dev/null
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
fi
exec dbus-launch --exit-with-session Hyprland
|