blob: e4ae62d97812df7632928cb4230939d5543c72e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
printf "
You must symlink this package's contents to ~/.config/mpv/scripts
in order for it to work properly.
You can create these symlinks with:
ln -sv /usr/lib/mpv/mpv-sponsorblock-git/{sponsorblock.lua,sponsorblock_shared} ~/.config/mpv/scripts/
";
}
post_remove() {
printf "
Please remember to remove the symlinks if you created ones to enable this plugin.
You can remove it using:
rm -v ~/.config/mpv/scripts/{sponsorblock.lua,sponsorblock_shared}
";
}
|