blob: 957cf4272855653e314d6492fb081100f9a9f709 (
plain) (
blame)
1
2
3
4
5
6
|
#!/usr/bin/env sh
# Open links using mpv in a new tmux window.
# Make sure the urls are printed as they are added.
tmux neww -t mpv: mpv --volume=50 --script-opts=print_filenames=yes "$@"
|