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