-
-cd ~
-if [ -n "$bsd" ]; then
- touch .hushlogin
-
- # FreeBSD tries `_secure_path' on `.login_conf' before reading the
- # database, so it needs to be compiled and unlinked for it to actually
- # take effect.
- rm .login_conf.db
- cap_mkdb .login_conf
-
- # run .zprofile to set up tmp
- /usr/local/bin/zsh .zprofile
+find xorg/icons -mindepth 1 -maxdepth 2 -type d | while read -r x; do
+ if [ -e "$x/index.theme" ]; then
+ d="$HOME/.icons/`basename "$x"`"
+ l $d
+ which gtk-update-icon-cache >/dev/null 2>&1 && gtk-update-icon-cache -qtf $d
+ unset d
+ fi
+done
+find xorg/themes -mindepth 1 -maxdepth 1 -type d | while read -r x; do
+ l "$HOME/.themes/`basename "$x"`"
+done
+find gpg -mindepth 1 -maxdepth 1 \! -name '*.gpg' | while read -r x; do
+ l "$HOME/.gnupg/`basename "$x"`"
+done
+if which gpg >/dev/null 2>&1; then
+ find gpg -mindepth 1 -maxdepth 1 -name '*.gpg' | while read -r x; do
+ gpg --import "$x"
+ done