From 232e648e3384a6e6ac4290fb64622ce1a238cfc9 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Mon, 26 Aug 2019 23:04:05 +0300 Subject: [PATCH] add mpv.conf Closes #19 --- conf/mpv.conf | 24 ++++++++++++++++++++++++ install | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 conf/mpv.conf diff --git a/conf/mpv.conf b/conf/mpv.conf new file mode 100644 index 00000000..5002a11b --- /dev/null +++ b/conf/mpv.conf @@ -0,0 +1,24 @@ +# ~/.config/mpv/mpv.conf + +# My mpv usage has mostly been anime +alang=jpn,jp,ja + +# Fullscreen by default +fs=yes + +# Vsync? The user who originally added it judged it to not be working +# though. +#opengl-swapinterval=0 + +# HQ options according to Arch Wiki, may cause problems for "a few users" +profile=gpu-hq +# AW says that the manual says to use these for the best quality if the +# hardware can handle it. +scale=ewa_lanczossharp +cscale=ewa_lanczossharp +# "more complicated", desyncing video causes resampling audio +video-sync=display-resample +# make motion smoother (both two) +interpolation +tscale=oversample + diff --git a/install b/install index 706d5cfd..e1bf0880 100755 --- a/install +++ b/install @@ -13,6 +13,8 @@ cat rc/vimrc > ~/.vimrc mkdir -p ~/.config/nvim/ cat conf/init.vim > ~/.config/nvim/init.vim cat conf/makepkg.conf > ~/.makepkg.conf +mkdir -p ~/.config/mpv/ +cat conf/mpv.conf > ~/.config/mpv/mpv.conf if [ ! -f ~/.oidentd.conf ]; then cat conf/oidentd.conf > ~/.oidentd.conf fi