Gen 423: Updated shell script nix files to point to sound files in the root directory

This commit is contained in:
pagedMov
2024-10-12 17:29:04 -04:00
parent 07b2f5cab9
commit ed16562d58
28 changed files with 34 additions and 34 deletions

View File

@@ -1,10 +1,10 @@
{ pkgs }:
{ self, pkgs }:
{
nixcommit = pkgs.writeShellScriptBin "nixcommit" (''
#!/run/current-system/sw/bin/bash
scheck && runbg aplay ~/media/sound/sys/nixswitch-start.wav
scheck && runbg aplay ${self}/media/sound/nixswitch-start.wav
builtin cd "$HOME/sysflakes" || exit
nix flake update
if [ -n "$2" ]; then
@@ -17,14 +17,14 @@ gen=$((gen + 1))
diffcheck=$(git status | grep "working tree clean")
if [ -n "$diffcheck" ]; then
scheck && runbg aplay ~/media/sound/sys/warning.wav
scheck && runbg aplay ${self}/media/sound/warning.wav
echo "Nothing to commit"
exit
fi
git add .
git commit -m "Gen $gen: $1"
git push
scheck && runbg aplay ~/media/sound/sys/gitpush.wav
scheck && runbg aplay ${self}/media/sound/gitpush.wav
builtin cd - || exit
'');
}