7 lines
167 B
Bash
7 lines
167 B
Bash
|
function mpvanime () {
|
||
|
SCRSHOT=$1
|
||
|
shift
|
||
|
mpv --profile=anime-mode --screenshot-directory=/home/accel/Pictures/screenshots/vid/$SCRSHOT $*
|
||
|
}
|
||
|
compdef _mpv mpvanime
|