8 lines
225 B
Bash
Executable File
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
|