aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/script/mbsync-update
blob: 90ec2f2dcb6ffb75eb63b4362c2e00d02adc699c (plain) (blame)
1
2
3
4
5
#!/bin/sh

output="$(mbsync -a | grep -E 'pulled [1-9]' | sed -E 's/ and [0-9]+ flag.*//')"
[ -n "$output" ] && notify-send "mbsync" "$output"
exit 0