Add mpv configuration
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
34636ae138
commit
089f2017c8
6 changed files with 39 additions and 3 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,4 +1,9 @@
|
||||||
composer.phar
|
composer.phar
|
||||||
.fonts/
|
.fonts/
|
||||||
bin/composer
|
bin/composer
|
||||||
system/.config/dconf/user
|
system/.config/dconf/user
|
||||||
|
|
||||||
|
system/.config/mpv/encoding.rst
|
||||||
|
system/.config/mpv/tech-overview.txt
|
||||||
|
system/.config/mpv/mplayer-input.conf
|
||||||
|
system/.config/mpv/restore-old-bindings.conf
|
|
@ -45,7 +45,12 @@ This folder contains my GTK 3.0 configuration. I don't edit this configuration d
|
||||||
This folder contains my configuration for [htop](https://hisham.hm/htop/).
|
This folder contains my configuration for [htop](https://hisham.hm/htop/).
|
||||||
|
|
||||||
### `.config/i3`
|
### `.config/i3`
|
||||||
This folder contains the configuration for my preferred window manager [i3](https://i3wm.org/). Instead of the normal i3 I use the [i3-gaps](https://www.archlinux.org/packages/community/x86_64/i3-gaps/) fork.
|
This folder contains the configuration for my preferred window manager
|
||||||
|
[i3](https://i3wm.org/). Instead of the normal i3 I use the
|
||||||
|
[i3-gaps](https://www.archlinux.org/packages/community/x86_64/i3-gaps/) fork.
|
||||||
|
|
||||||
|
### `.config/mpv`
|
||||||
|
This folder contains my configuration for mpv.
|
||||||
|
|
||||||
### `.config/polybar`
|
### `.config/polybar`
|
||||||
This folder contains my bar configuration and launch script for
|
This folder contains my bar configuration and launch script for
|
||||||
|
|
|
@ -43,6 +43,7 @@ LINKED_FILES_HOME=(
|
||||||
".config/gtk-3.0"
|
".config/gtk-3.0"
|
||||||
".config/htop"
|
".config/htop"
|
||||||
".config/i3"
|
".config/i3"
|
||||||
|
".config/mpv"
|
||||||
".config/polybar"
|
".config/polybar"
|
||||||
".config/redshift"
|
".config/redshift"
|
||||||
".config/streamlink"
|
".config/streamlink"
|
||||||
|
|
9
system/.config/mpv/input.conf
Normal file
9
system/.config/mpv/input.conf
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Seek controls
|
||||||
|
RIGHT seek 5
|
||||||
|
LEFT seek -5
|
||||||
|
UP seek 60
|
||||||
|
DOWN seek -60
|
||||||
|
|
||||||
|
# Speed controls
|
||||||
|
+ add speed 0.1
|
||||||
|
- add speed -0.1
|
16
system/.config/mpv/mpv.conf
Normal file
16
system/.config/mpv/mpv.conf
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Video settings
|
||||||
|
fs=yes
|
||||||
|
force-window=immediate
|
||||||
|
|
||||||
|
# Cache
|
||||||
|
cache-default=153600
|
||||||
|
cache=153600
|
||||||
|
cache-pause=no
|
||||||
|
demuxer-readahead-secs=5.0
|
||||||
|
cache-secs=0.0
|
||||||
|
|
||||||
|
# Default subtitles
|
||||||
|
slang=en
|
||||||
|
|
||||||
|
# Default audio
|
||||||
|
alang=en,de
|
|
@ -9,6 +9,6 @@
|
||||||
#
|
#
|
||||||
# USAGE:
|
# USAGE:
|
||||||
# This file is automatically used by Streamlink.
|
# This file is automatically used by Streamlink.
|
||||||
player=mplayer -cache 8192
|
player=mpv
|
||||||
player-no-close
|
player-no-close
|
||||||
twitch-oauth-token=30ktx6jc273cdc9gmkb7jftny3vrgn
|
twitch-oauth-token=30ktx6jc273cdc9gmkb7jftny3vrgn
|
Loading…
Add table
Add a link
Reference in a new issue