nix/overlays/mpv/default.nix
Ameya Shenoy 4998e822a7 feat: init
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2024-11-11 01:48:40 +05:30

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
];
};
}