From 50a5beb8b59805eba3f305f3b631ac7842bd764d Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 16 May 2025 01:48:26 +0200 Subject: [PATCH] fix: update information --- modules/home/scripts/scripts/notes.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/scripts/scripts/notes.sh b/modules/home/scripts/scripts/notes.sh index 7d4b3cf..1644df1 100644 --- a/modules/home/scripts/scripts/notes.sh +++ b/modules/home/scripts/scripts/notes.sh @@ -1,7 +1,7 @@ #!/bin/sh # MIT license -# Ahwx https://ahwx.org - 2024 +# liv < liv at liv dot town > https://liv.town - 2024 # # Dependencies: find/grep/bemenu/ping/git/ @@ -14,9 +14,9 @@ echo "Check if connected to internet and pull changes from Git" ping -c1 github.com >/dev/null && notify-send "$(git pull)" # Pull most recent changes, be sure to not create conficts... if [ "$CHOSEN" ]; then - kitty -e nvim "$CHOSEN" # Finally open chosen note + kitty -e nvim "$CHOSEN" # Finally open chosen note - git add "$CHOSEN" && git commit -m "chore: updates (auto)" && git push && notify-send "Changes pushed" + git add "$CHOSEN" && git commit -m "chore: updates (auto)" && git push && notify-send "Changes pushed" else - exit 1 + exit 1 fi