11 lines
422 B
Nix
11 lines
422 B
Nix
_: _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
|
|
];
|
|
};
|
|
}
|