]> git.sev.monster Git - dotfiles.git/commitdiff
fix gnu find depth warning, update comments
authorsev <git@sev.monster>
Mon, 20 Apr 2020 07:04:27 +0000 (02:04 -0500)
committersev <git@sev.monster>
Fri, 5 Apr 2024 21:27:39 +0000 (16:27 -0500)
install.sh

index bff209a5c057f8f11a2d79063b890c2bab8bcf89..1316d74b559be8f45b4e739214e10452ebfb384f 100755 (executable)
@@ -53,10 +53,10 @@ done
 find xdg -mindepth 1 -maxdepth 1 | while read -r x; do
        l "$HOME/etc/`basename "$x"`"
 done
-find urxvt-ext -type f -perm -111 -mindepth 1 -maxdepth 2 | while read -r x; do
+find urxvt-ext -mindepth 1 -maxdepth 2 -type f -perm -111 | while read -r x; do
        l "$HOME/.urxvt/ext/`basename $x`"
 done
-find xorg/icons -type d -mindepth 1 -maxdepth 2 | while read -r x; do
+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
@@ -64,15 +64,15 @@ find xorg/icons -type d -mindepth 1 -maxdepth 2 | while read -r x; do
                unset d
        fi
 done
-find xorg/themes -type d -mindepth 1 -maxdepth 1 | while read -r x; do
+find xorg/themes -mindepth 1 -maxdepth 1 -type d | while read -r x; do
        l "$HOME/.themes/`basename "$x"`"
 done
-find fonts -type d -mindepth 1 -maxdepth 1 | while read -r x; do
+find fonts -mindepth 1 -maxdepth 1 -type d | while read -r x; do
        l "$HOME/share/fonts/`basename "$x"`"
 done
 #XXX: potential bug with newlines in profile name (if ff even takes it)
-#XXX: breaks on multiple profiles, read from profiles.ini
-ffdir="`find "$HOME/.mozilla/firefox" -type d -mindepth 1 -maxdepth 1 | head -1 2>$devnull`"
+#XXX: only uses first profile folder, read from profiles.ini
+ffdir="`find "$HOME/.mozilla/firefox" -mindepth 1 -maxdepth 1 -type d | head -1 2>$devnull`"
 if [ -d "$ffdir" ]; then
        find firefox -mindepth 1 -maxdepth 1 | while read -r x; do
                l "$ffdir/`basename "$x"`"
@@ -84,4 +84,5 @@ if [ -d "$ffdir" ]; then
 fi
 
 # run .zprofile to set up tmp
+# .zprofile also sources .zshenv for compatibility
 zsh ~/.zprofile
This page took 0.035543 seconds and 4 git commands to generate.