Files
misc/bin/sync_music
2025-07-02 00:07:49 -07:00

8 lines
225 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