diff options
| author | xengineering <me@xengineering.eu> | 2023-04-15 11:04:13 +0200 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2023-04-15 11:04:13 +0200 |
| commit | d812c36269b2777f7abd28d7f8358c026dbec524 (patch) | |
| tree | 0064ac1b8aba30e3f3c0ce3f5413394b35172d2e | |
| parent | 824466212bd4cdf3342caff67a502653f18739c6 (diff) | |
| download | dotfiles-d812c36269b2777f7abd28d7f8358c026dbec524.tar dotfiles-d812c36269b2777f7abd28d7f8358c026dbec524.tar.zst dotfiles-d812c36269b2777f7abd28d7f8358c026dbec524.zip | |
Move save-position-on-quit mpv option to config
This used to be a bashrc alias. With the config file it is also
available to other shells and graphical environments.
| -rw-r--r-- | .bashrc | 1 | ||||
| -rw-r--r-- | mpv/mpv.conf | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,6 @@ function my_xdg_open() { nohup xdg-open "$1" > /dev/null 2>&1 & } alias open=my_xdg_open alias note='"${EDITOR}" "$(mktemp)"' alias nolink='cd $(pwd -P)' -alias mpv='mpv --save-position-on-quit' # extend PATH by custom scripts (location based on XDG) diff --git a/mpv/mpv.conf b/mpv/mpv.conf new file mode 100644 index 0000000..f3140f7 --- /dev/null +++ b/mpv/mpv.conf @@ -0,0 +1 @@ +save-position-on-quit=yes |
