From 8523bbb95e91665d3ca93a5988555cfd09842997 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 25 Nov 2018 12:54:48 +1300 Subject: Add config file for mpv Only one line so far, but it's a good one: don't open a new window to try to show me album art when I play FLACs, especially since it doesn't work. --- Makefile | 5 +++++ README.md | 1 + mpv/mpv.conf | 2 ++ 3 files changed, 8 insertions(+) create mode 100644 mpv/mpv.conf diff --git a/Makefile b/Makefile index 0d4af4d6..3093b96d 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ install-login-shell \ install-man \ install-mpd \ + install-mpv \ install-mutt \ install-mysql \ install-ncmcpp \ @@ -437,6 +438,10 @@ install-mpd: install-sh cp -p -- mpd/profile.d/* $(HOME)/.profile.d cp -p -- mpd/mpdconf $(HOME)/.mpdconf +install-mpv: + mkdir -p -- $(HOME)/.config/mpv + cp -p -- mpv/* $(HOME)/.config/mpv + install-mutt: mkdir -p -- $(HOME)/.muttrc.d $(HOME)/.cache/mutt cp -p -- mutt/muttrc $(HOME)/.muttrc diff --git a/README.md b/README.md index ea316997..8a2f412d 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ Configuration is included for: elements * [i3](https://i3wm.org/) -- Tiling window manager * [less](https://www.gnu.org/software/less/) -- Terminal pager +* [mpv](https://mpv.io/) -- Media player * [Mutt](http://www.mutt.org/) -- Terminal mail user agent * [`mysql(1)`](https://linux.die.net/man/1/mysql) -- Command-line MySQL client * [Ncmpcpp](https://rybczak.net/ncmpcpp/) -- ncurses music player client diff --git a/mpv/mpv.conf b/mpv/mpv.conf new file mode 100644 index 00000000..5a2a05c4 --- /dev/null +++ b/mpv/mpv.conf @@ -0,0 +1,2 @@ +# Don't try to show me album covers when I play FLAC +no-audio-display -- cgit v1.2.3