nix/overlays/mpv/default.nix

12 lines
422 B
Nix
Raw Normal View History

_: _self: super: {
mpv = super.mpv.override {
scripts = [
super.mpvScripts.mpris # to play pause mpv with system keys
super.mpvScripts.uosc # required for thumbfast
super.mpvScripts.thumbfast # to show thumbnails on hover
super.mpvScripts.sponsorblock-minimal # to skip sponsor section while playing youtube links
super.mpvScripts.webtorrent-mpv-hook # to stream torrents
];
};
}