diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-04-01 03:53:49 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-04-01 08:59:00 +0530 |
commit | 8bbb752a790293aa442d7a15e8634eedfa7076f5 (patch) | |
tree | 440f5a0570352340a34332b16967a9df6ad95c56 | |
parent | 584a5f90f35c9cddbdb5d5a525e7550ad272b505 (diff) | |
download | nnn-8bbb752a790293aa442d7a15e8634eedfa7076f5.tar.gz |
Open audio files with mpv
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | config.def.h | 2 | ||||
-rw-r--r-- | nnn.1 | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -68,7 +68,7 @@ I chose to fork because: - Selective file associations (ignored if `NNN_OPENER` is set): - Associate plain text files with vi (using `file` command) - Remove video file associations (to each his own favourite video player) - - Associate common audio mimes with lightweight [fmedia](http://fmedia.firmdev.com/) + - Associate common audio mimes with mpv - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/) - Use environment variable `NNN_FALLBACK_OPENER` to open other non-associated files - Removed `less` as default file opener (there is no universal standalone opener utility) @@ -166,4 +166,4 @@ Start nnn and use `Ctrl-k` to copy the absolute path (from `/`) of the file unde ### Change file associations -If you want to set custom applications for certain mime types, or change the ones set already (e.g. vi, fmedia, zathura), modify the `assocs` structure in [config.def.h](https://github.com/jarun/nnn/blob/master/config.def.h) (it's easy). Then re-compile and install. +If you want to set custom applications for certain mime types, or change the ones set already (e.g. vi, mpv, zathura), modify the `assocs` structure in [config.def.h](https://github.com/jarun/nnn/blob/master/config.def.h) (it's easy). Then re-compile and install. diff --git a/config.def.h b/config.def.h index bbde21a..a07c215 100644 --- a/config.def.h +++ b/config.def.h @@ -13,7 +13,7 @@ char *idlecmd = "rain"; /* The screensaver program */ struct assoc assocs[] = { //{ "\\.(avi|mp4|mkv|mp3|ogg|flac|mov)$", "mpv" }, { "\\.(c|cpp|h|txt|log|sh)$", "vi" }, - { "\\.(wma|mp3|ogg|flac)$", "fmedia" }, + { "\\.(wma|mp3|ogg|flac)$", "mpv" }, //{ "\\.(png|jpg|gif)$", "feh" }, //{ "\\.(html|svg)$", "firefox" }, { "\\.pdf$", "zathura" }, @@ -128,7 +128,7 @@ variable NNN_OPENER is not set: ----------------------------------------------- struct assoc assocs[] = { { "\\.(c|cpp|h|txt|log|sh)$", "vi" }, - { "\\.(wma|mp3|ogg|flac)$", "fmedia" }, + { "\\.(wma|mp3|ogg|flac)$", "mpv" }, { "\\.pdf$", "zathura" }, }; ----------------------------------------------- |