]> Sergey Matveev's repositories - dotfiles.git/blob - mpv/bin/mp
bdefc0a78b1e18cb536dc8e521b0a4bb9f4a6df3
[dotfiles.git] / mpv / bin / mp
1 #!/usr/bin/env zsh
2
3 args=()
4 for arg ($@) {
5     [[ $arg =~ "^[A-Z][A-Z]$" ]] && arg="--profile=$arg"
6     args=($args $arg)
7 }
8 exec mpv $args