git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.bash
diff options
context:
space:
mode:
authormail_redacted_for_web 2026-04-21 18:03:32 +0200
committermail_redacted_for_web 2026-04-21 18:03:32 +0200
commit1608b471d105728de384c220de844bad0fce6fe0 (patch)
tree7537175e894f84f9e463d6172dcb0e20d0fc8cdb /.bash
parent93c7be36069e7cca3cd601aa94d4af6cd8010311 (diff)
downloaddotfiles-1608b471d105728de384c220de844bad0fce6fe0.tar.bz2
fix: define line derivations as functions so they can be used by scripts
Diffstat (limited to '.bash')
-rw-r--r--.bash/aliases.bash10
1 files changed, 5 insertions, 5 deletions
diff --git a/.bash/aliases.bash b/.bash/aliases.bash
index 42e1639..abf30c4 100644
--- a/.bash/aliases.bash
+++ b/.bash/aliases.bash
@@ -141,12 +141,12 @@ function hsep {
done
printf '\n'
}
-alias hdash='hsep "-"'
-alias hddash='hsep "="'
+function hdash { hsep '-'; }
+function hddash { hsep '='; }
#alias hline='hsep -i "─"'
-alias hline='hsep -i "─"'
-alias hdline='hsep -i "═"'
-alias hfline='hsep -i "━"'
+function hline { hsep -i '─' }
+function hdline { hsep -i '═'; }
+function hfline { hsep -i '━'; }
# ----- PACKAGE MANAGERS ----- #
if [ -x "/usr/bin/paru" ];then
alias pkgclean="paru --noconfirm -Sc"