Files
misc/bin/sync_music
2025-12-18 14:12:29 -08:00

8 lines
222 B
Bash
Executable File

#!/bin/sh
rsync -aP $HOME/wdraidz/media/music/ $HOME/music/ > $HOME/.sync_log && SUCCESS=1
if [ $SUCCESS = 1 ]; then
notify-send "sync complete; logged to $HOME/.sync_log" -i :
else
notify-send "sync error..." -i :
fi