From 805ce2dc310cbcecdbc642155feee964b5db8d2d Mon Sep 17 00:00:00 2001 From: ds6 Date: Thu, 30 Nov 2017 18:56:11 -0600 Subject: [PATCH] fixed .config not being added --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 0befa7c..4ced505 100755 --- a/install.sh +++ b/install.sh @@ -6,6 +6,9 @@ chmod go= base/.zshenv base/.Xresources for x in `find "$PWD/base" -mindepth 1 -maxdepth 1`; do ln -vwis "$x" "$HOME/`basename $x`" done +for x in `find "$PWD/xdg" -mindepth 1 -maxdepth 1`; do + ln -vwis "$x" "${XDG_CONFIG_HOME:-$HOME/.config}/`basename $x`" +done touch "$HOME/.hushlogin" #FreeBSD tries `_secure_path' on `.login_conf' before reaading the database, -- 2.47.0