You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
324 B
16 lines
324 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
[[ -f ~/.Xdefaults ]] && xrdb -merge -I $HOME ~/.Xdefaults
|
||
|
|
||
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
||
|
[ -x "$f" ] && . "$f"
|
||
|
done
|
||
|
unset f
|
||
|
fi
|
||
|
|
||
|
source "$HOME/.envrc"
|
||
|
|
||
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
||
|
export SSH_AUTH_SOCK
|