Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lpnh/icons-brew.yazi
Make a hot `theme.toml` for your Yazi icons with your favorite color palette
https://github.com/lpnh/icons-brew.yazi
catppuccin tui yazi
Last synced: about 5 hours ago
JSON representation
Make a hot `theme.toml` for your Yazi icons with your favorite color palette
- Host: GitHub
- URL: https://github.com/lpnh/icons-brew.yazi
- Owner: lpnh
- License: unlicense
- Created: 2024-06-09T14:27:55.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-14T21:48:26.000Z (5 months ago)
- Last Synced: 2024-06-15T21:51:08.779Z (5 months ago)
- Topics: catppuccin, tui, yazi
- Language: Lua
- Homepage:
- Size: 206 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-yazi - icons-brew - Make a hot `theme.toml` for your Yazi icons with your favorite color palette. (Themes)
- awesome-yazi - icons-brew - Make a hot `theme.toml` for your Yazi icons with your favorite color palette. (Themes)
README
# icons-brew.yazi
Make a hot `theme.toml` for your Yazi icons with your favorite color palette.
Basically just an adaptation of
[tiny-devicons-auto-colors.nvim](https://github.com/rachartier/tiny-devicons-auto-colors.nvim)
plugin for Yazi.## Screenshots
Dark theme
Light theme
Observe how the default colors (on the left) have been replaced with
user-provided colors (on the right). The key lies in selecting the nearest
color from the new given palette that matches the original one.These screenshots were made using the script's default output, which is the
same as the one you can find in the `catppuccin.toml` file. The default config
uses the Mocha and Latte palettes for dark and light themes, respectively.## On Tap
If you have a taste for [catppuccin
flavors](https://github.com/catppuccin/catppuccin?tab=readme-ov-file#-palette),
just grab the ready-made [catppuccin.toml](/catppuccin.toml), rename it to
`theme.toml` and add it to your Yazi config path. You can do this with a single
command using `wget`, but be aware that this will overwrite any existing
`theme.toml` file in your `~/.config/yazi` directory:```sh
wget -O ~/.config/yazi/theme.toml https://raw.githubusercontent.com/lpnh/icons-brew.yazi/main/catppuccin.toml
```That's it, enjoy!
## Self-service
### Prepare
Use the `dark_colors_table` and `light_colors_table` in the
[config.lua](/config.lua) file to apply the desired color palette. There's also
some other variables you can adjust to change the color matching results.### Brew
Run the `brew.lua` script and save the output in a `theme.toml` file.
Using Bash:
```bash
lua brew.lua > theme.toml
```Using Nushell:
```nushell
lua brew.lua | save theme.toml
```### Serve
Add the generated file to your Yazi config directory:
```shell
mv theme.toml ~/.config/yazi/theme.toml
```## Acknowledgement
- [Yazi](https://yazi-rs.github.io) for the amazing — and *Blazing Fast* —
terminal file manager. The `brew.lua` follows the same script found on [Yazi's
repo](https://github.com/sxyazi/yazi/blob/main/scripts/icons/generate.lua).
- [tiny-devicons-auto-colors.nvim](https://github.com/rachartier/tiny-devicons-auto-colors.nvim),
for the algorithm and implementation logic. I.e. everything on the [prepare](/prepare)
path and the `config.lua` file derived from it.
- [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons), for
providing and maintaining the icons we all rely on.
- [catppuccin](https://github.com/catppuccin), for the soothing pastel theme. The
warmest flavors one could ask for.