blob: 60e58042fe43fcb6991db5deb57374e5e8068da8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -eux
# TODO: figure out why this fucks mako
exit 0
case "${1:-}" in
file-loaded) fyi -a mpv 'mpv hooks' 'dnd on' ;;
shutdown) fyi -a mpv 'mpv hooks' 'dnd off' ;;
esac
|