mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# dbus session
|
|
export XDG_CURRENT_DESKTOP=i3
|
|
exec dbus-run-session sh -c "
|
|
eval \$(gnome-keyring-daemon --start --components=secrets,ssh,gpg)
|
|
eval \$(ssh-agent -s)
|
|
gpgconf --launch gpg-agent
|
|
exec i3
|
|
"
|