Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanbriolat/2510667 to your computer and use it in GitHub Desktop.
Save alanbriolat/2510667 to your computer and use it in GitHub Desktop.
Enabling gnome-keyring-daemon in Xubuntu (12.04)
# 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:
#!/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