summaryrefslogtreecommitdiff
path: root/ar/.local
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-02-03 05:29:11 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-02-03 05:29:11 +0900
commiteb9fe46c7b21f1d3db651a6726a2f6cf7516e16b (patch)
tree758d175247af0de26369d4ec8fb1f58c1372f198 /ar/.local
parent35e2e48327a1fa78e8d2f287fa0b8932c3883a02 (diff)
modified zsh/keymaps.zsh, modified bin/hugow, modified bin/rbackup, modified Music/.music.txt
Diffstat (limited to 'ar/.local')
-rwxr-xr-xar/.local/bin/hugow33
-rwxr-xr-xar/.local/bin/rbackup4
2 files changed, 6 insertions, 31 deletions
diff --git a/ar/.local/bin/hugow b/ar/.local/bin/hugow
index 13cdf51..a715606 100755
--- a/ar/.local/bin/hugow
+++ b/ar/.local/bin/hugow
@@ -7,6 +7,8 @@ server="${THESIAH_SERVER:-root@thesiah.xyz}"
dest="/var/www/thesiah/diary/"
defaults="sy after foramonth"
src="$repodir/public/diary/"
+bgm="$repodir/static/bgm/"
+bgmd="/var/www/thesiah/bgm/"
cd "$repodir"
hugo --cleanDestinationDir
@@ -16,37 +18,10 @@ if [ ! -f "$out" ]; then
exit 1
fi
-# tmp="$(mktemp "$out.XXXXXXXX.tmp")"
-
-# awk -v defaults="$defaults" '
-# BEGIN {
-# n = split(defaults, a, /[[:space:]]+/)
-# insert = ""
-# for (i = 1; i <= n; i++) {
-# if (a[i] == "") continue
-# name = a[i] ".mp4"
-# insert = insert \
-# " <li>\n" \
-# " <a href=\"/diary/" name "\" data-name=\"" name "\" class=\"vid\">" name "</a>\n" \
-# " </li>\n"
-# }
-# injected = 0
-# }
-# {
-# print
-# if (!injected && $0 ~ /<ul[^>]*id=["'\''"]list["'\''"][^>]*>/) {
-# printf("%s", insert)
-# injected = 1
-# }
-# }
-# END { if (!injected) exit 2 }
-# ' "$out" >"$tmp"
-#
-# mv "$tmp" "$out"
-# echo "Injected defaults into: $out"
-#
ssh "$server" "mkdir -p '$dest'"
+rsync -azv --update --itemize-changes --stats "$bgm" "$server:$bgmd"
+
if [ -n "${THESIAH_SSH_OPTS:-}" ]; then
rsync -azv --update --itemize-changes --stats \
-e "ssh $THESIAH_SSH_OPTS" \
diff --git a/ar/.local/bin/rbackup b/ar/.local/bin/rbackup
index d2dc610..70c15d9 100755
--- a/ar/.local/bin/rbackup
+++ b/ar/.local/bin/rbackup
@@ -178,10 +178,10 @@ echo "Backup starts to $backup_path..."
process_options "$@"
# Main script logic
-mount_luks && echo "Mount backup drive... " && echo "Success to mount luks drive!" || error "Failed to mount $backup_path"
+#mount_luks && echo "Mount backup drive... " && echo "Success to mount luks drive!" || error "Failed to mount $backup_path"
[ -d "$backup_path" ] || sudo mkdir -p "$backup_path"
echo "Sync home files..." && sync_files && echo "Success to sync files!" || error "Failed back up files"
echo "Sync root files..." && sync_root && echo "Success to sync root!" || error "Failed back up root"
echo "Sync server files..." && sync_server && echo "Success to sync server!" || error "Failed back up server"
-echo "Sync files to nextcloud..." && sync_nextcloud && echo "Success to sync nextcloud!" || error "Failed back up nextcloud"
+#echo "Sync files to nextcloud..." && sync_nextcloud && echo "Success to sync nextcloud!" || error "Failed back up nextcloud"
echo "Done!"