Git Repos / dotfiles / commit b70afd7
Commit: b70afd7cd6c25ff65ebd8190832cbf26d6208f27
Parent: 09028a56aa041954b1005c0c33f412bbe8674466
Author: Cameron Vanderzanden, 2021-12-08 13:12
Committer: Cameron Vanderzanden, 2021-12-08 13:12
Commit Message
A little cleanup. Shorten one line in FreeBSD.mk and remove one in aliases.sh.
Change List
? | File | Add | Del |
---|---|---|---|
M | FreeBSD.mk | +1 | -1 |
M | bin/aliases.sh | -2 |
Diff FreeBSD.mk
diff --git a/FreeBSD.mk b/FreeBSD.mk
index 8634064..fa72405 100644
--- a/FreeBSD.mk
+++ b/FreeBSD.mk
@@ -73,7 +73,7 @@ install-root: tmux.conf
install-config:
# use the shell to do this part.
- for f in $$(find -s config -type f \! -name '*.$(COLOREXT)' -print); do \
+ for f in $$(find -s config -type f \! -name '*.$(COLOREXT)'); do \
$(INSTALL) -c -m $(REGM) $$f $(INTODIR)/.$$f; \
done
chmod $(BINM) $(INTODIR)/.config/herbstluftwm/autostart
Return to the top of this page or return to the overview of this repo.
Diff bin/aliases.sh
diff --git a/bin/aliases.sh b/bin/aliases.sh
index cf00119..a8a62c9 100644
--- a/bin/aliases.sh
+++ b/bin/aliases.sh
@@ -64,8 +64,6 @@ alias tv="$HOME/bin/run_tv.sh"
alias words="$HOME/bin/words.sh"
alias youtube="$HOME/bin/youtube.sh"
-unset xls lsopt
-
mp3_bug() {
file --mime-type -N "$@" | /usr/bin/grep "application/octet-stream"
}
Return to the top of this page or return to the overview of this repo.