Commit for generation 152

This commit is contained in:
2024-10-02 02:19:25 -04:00
parent 9cc3e84557
commit 4e75e9f025

View File

@@ -126,13 +126,13 @@ wiki_update() {
# Functions # Functions
ls() { ls() {
command ls --group-directories-first --color=always -F1 "$@" | sort -f -k1 command ls --group-directories-first --color=always -F1 "$@" | sort -f -k1
sounds_enabled && (aplay ~/sound/sys/ls.wav 2> /dev/null &) sounds_enabled && (aplay ~/sound/sys/ls.wav > /dev/null 2>&1 &)
} }
# cd and ls after # cd and ls after
cd() { cd() {
builtin cd "$@" && ls builtin cd "$@" && ls
sounds_enabled && (aplay ~/sound/sys/cd.wav 2> /dev/null &) sounds_enabled && (aplay ~/sound/sys/cd.wav > /dev/null 2>&1 &)
} }
src() { src() {
autoload -U zrecompile autoload -U zrecompile
@@ -277,6 +277,7 @@ fi
~/coding/scripts/splash.sh ~/coding/scripts/splash.sh
eval "$(starship init zsh)" eval "$(starship init zsh)"
(aplay ~/sound/sh-source.wav > /dev/null 2>&1 &)
''; '';
# Options # Options