diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-24 13:54:03 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-24 13:54:03 +0900 |
| commit | 28e8bdf7f8286bd431b7f3b709e79f3827b31469 (patch) | |
| tree | 85b44eff6da4d8443198fb6e04dfb6ee55244588 /debian/.config/yazi/plugins/lsar.yazi/README.md | |
| parent | 8470ff001befcfd0f626dea69a9e76d43aee0511 (diff) | |
updates
Diffstat (limited to 'debian/.config/yazi/plugins/lsar.yazi/README.md')
| -rw-r--r-- | debian/.config/yazi/plugins/lsar.yazi/README.md | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/debian/.config/yazi/plugins/lsar.yazi/README.md b/debian/.config/yazi/plugins/lsar.yazi/README.md new file mode 100644 index 0000000..e944442 --- /dev/null +++ b/debian/.config/yazi/plugins/lsar.yazi/README.md @@ -0,0 +1,43 @@ +# lsar.yazi + +Previewing archive contents with `lsar`, which is something you might not want to use anyway. + +It was the default archive previewer before Yazi v0.3, and after then, it was replaced with a faster and more efficient `7zip` previewer. + +This plugin is here just in case you're still interested in the old behavior, +but we strongly discourage using it unless you encounter some issues with `7zip` when previewing CJK characters - `lsar` usually does a better job recognizing these characters. + +## Installation + +```sh +ya pkg add yazi-rs/plugins:lsar +``` + +## Usage + +Add this to your `~/.config/yazi/yazi.toml`: + +```toml +[[plugin.prepend_previewers]] +mime = "application/{,g}zip" +run = "lsar" + +[[plugin.prepend_previewers]] +mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}" +run = "lsar" +``` + +Make sure you have `unar` installed, and have `lsar` in your `$PATH`. You can install it with: + +```sh +# Arch Linux +sudo pacman -S unarchiver +# macOS +brew install unar +# Windows +scoop install unar +``` + +## License + +This plugin is MIT-licensed. For more information check the [LICENSE](LICENSE) file. |
