Created
April 27, 2012 16:41
-
-
Save alanbriolat/2510667 to your computer and use it in GitHub Desktop.
Enabling gnome-keyring-daemon in Xubuntu (12.04)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is sourced by Xsession(5), not executed. | |
STARTGKD= | |
GNOME_KEYRING_DAEMON=/usr/local/bin/start-gnome-keyring-daemon.sh | |
#if has_option use-gnome-keyring-daemon; then | |
STARTGKD=yes | |
#fi | |
if [ -n "$STARTGKD" ]; then | |
STARTUP="$GNOME_KEYRING_DAEMON $STARTUP" | |
fi | |
# vim:set ai et sts=2 sw=2 tw=80: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export `gnome-keyring-daemon --start` | |
exec $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment