Commit for generation 151
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
STARSHIP_CONFIG = /home/pagedmov/.config/starship/starship.toml;
|
STARSHIP_CONFIG = /home/pagedmov/.config/starship/starship.toml;
|
||||||
FZF_DEFAULT_COMMAND = "find $HOME \( -path \"$HOME/.steam\" -o -path \"$HOME/.mozilla\" -o -path \"$HOME/go\" \) -prune -o -type f -print";
|
FZF_DEFAULT_COMMAND = "find $HOME \( -path \"$HOME/.steam\" -o -path \"$HOME/.mozilla\" -o -path \"$HOME/go\" \) -prune -o -type f -print";
|
||||||
GIT_TOKEN = "$(cat supersecret/git-token)";
|
GIT_TOKEN = "$(cat supersecret/git-token)";
|
||||||
PROMPT_COMMAND = "if [[ $? != 0 ]]; then sounds_enabled && aplay ~/sound/sys/error.wav; fi";
|
PROMPT_COMMAND = "if [[ $? != 0 ]]; then sounds_enabled && (aplay ~/sound/sys/error.wav 2> /dev/null &); fi";
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
@@ -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 2> /dev/null &)
|
||||||
}
|
}
|
||||||
|
|
||||||
# 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 2> /dev/null &)
|
||||||
}
|
}
|
||||||
src() {
|
src() {
|
||||||
autoload -U zrecompile
|
autoload -U zrecompile
|
||||||
@@ -185,7 +185,7 @@ safe_rm() {
|
|||||||
|
|
||||||
# Perform the removal if no checks or confirmation is "y"
|
# Perform the removal if no checks or confirmation is "y"
|
||||||
if [ "$check" = false ] || [ "$confirm" = "y" ]; then
|
if [ "$check" = false ] || [ "$confirm" = "y" ]; then
|
||||||
check_sounds && aplay ~/sound/sys/rm.wav 2> /dev/null
|
check_sounds && (aplay ~/sound/sys/rm.wav 2> /dev/null &)
|
||||||
/run/current-system/sw/bin/rm -rfv "$dir"
|
/run/current-system/sw/bin/rm -rfv "$dir"
|
||||||
else
|
else
|
||||||
echo "Operation cancelled for '$dir'."
|
echo "Operation cancelled for '$dir'."
|
||||||
@@ -198,7 +198,7 @@ safe_rm() {
|
|||||||
|
|
||||||
|
|
||||||
nixswitch() {
|
nixswitch() {
|
||||||
sounds_enabled && aplay ~/sound/sys/nixswitch-start.wav 2> /dev/null
|
sounds_enabled && (aplay ~/sound/sys/nixswitch-start.wav 2> /dev/null &)
|
||||||
builtin cd "$HOME/sysflakes"
|
builtin cd "$HOME/sysflakes"
|
||||||
nix flake update
|
nix flake update
|
||||||
|
|
||||||
@@ -212,7 +212,7 @@ nixswitch() {
|
|||||||
fi
|
fi
|
||||||
sudo nixos-rebuild switch --flake "$HOME/sysflakes#glasshouse"
|
sudo nixos-rebuild switch --flake "$HOME/sysflakes#glasshouse"
|
||||||
builtin cd $OLDPWD
|
builtin cd $OLDPWD
|
||||||
sounds_enabled && aplay ~/sound/sys/update.wav 2> /dev/null
|
sounds_enabled && (aplay ~/sound/sys/update.wav 2> /dev/null &)
|
||||||
}
|
}
|
||||||
journal() {
|
journal() {
|
||||||
# journal for keeping track of stuff I do that isn't declared in my nix config
|
# journal for keeping track of stuff I do that isn't declared in my nix config
|
||||||
|
|||||||
Reference in New Issue
Block a user