dots


commit
ed5289c
parent
2af4923
author
xxwhirlpool
date
2025-06-10 08:59:50 -0400 EDT
add bashrc snippets file in lieu of committing full bashrc
1 files changed,  +21, -0
A misc/.bashrc-snippets-laptop
+21, -0
 1@@ -0,0 +1,21 @@
 2+# from my laptop
 3+
 4+alias nano=micro
 5+alias sudo="sudo "
 6+alias pick="pastel pick"
 7+alias gitall="git remote | xargs -L1 git push --all"
 8+
 9+alias fd="fdfind "
10+
11+alias neofetch="hyfetch"
12+alias fastfetch="hyfetch"
13+
14+cdmess() {
15+	# from this blog post:
16+	#
17+	# https://blog.larah.me/mess-directory/
18+	#
19+    today_tmpdir="${TMPDIR-/tmp}/${USER}_mess/$(date +%F)"
20+    mkdir -p "$today_tmpdir"
21+    cd "$(mktemp -d -p "${today_tmpdir}" XXXX)"
22+}