mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
12 lines
259 B
Bash
Executable File
12 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# dbus session
|
|
export XDG_CURRENT_DESKTOP=i3
|
|
exec dbus-run-session sh -c "
|
|
umask 077
|
|
printf '%s\n' \"\$DBUS_SESSION_BUS_ADDRESS\" > \"\$HOME/.dbus-session-bus-address\"
|
|
eval \$(ssh-agent -s)
|
|
gpgconf --launch gpg-agent
|
|
exec i3
|
|
"
|