| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
| Kind | info_provider |
| Binary | xfetch-plugin-theme-manager |
| Dependencies | curl CLI |
| Registry | github.com/xfetch-cli/themes (index.json) |
cargo build --release --manifest-path plugins/theme-manager/Cargo.toml
xfetch plugin install theme-manager
Display all available themes from the registry:
{
"info_plugins": [
{ "plugin": "theme-manager" }
],
"modules": ["plugin:theme-manager"]
}This is the default action when none is specified.
Search themes by name, description, author, or tags:
{
"info_plugins": [
{
"plugin": "theme-manager",
"args": {
"action": "search",
"query": "dark"
}
}
],
"modules": ["plugin:theme-manager"]
}Show detailed information about a specific theme:
{
"info_plugins": [
{
"plugin": "theme-manager",
"args": {
"action": "info",
"name": "dracula"
}
}
],
"modules": ["plugin:theme-manager"]
}Download and install a theme from the registry:
{
"info_plugins": [
{
"plugin": "theme-manager",
"args": {
"action": "install",
"name": "dracula"
}
}
],
"modules": ["plugin:theme-manager"]
}The theme file is saved to ~/.config/xfetch/themes/<name>.jsonc.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | No | One of list (default), search, info, install |
| name | string | For info and install | Theme name (e.g., dracula, nord) |
| query | string | For search | Search term matching name, description, author, or tags |
| registry | string | No | Custom registry URL (defaults to xfetch-cli/themes) |
Theme Manager -- 6 themes available
dracula xscriptor section (#dark #dracula #popular)
Dark magenta, red, and cyan palette inspired by the Dracula color scheme.
nord xscriptor section (#light #nord #arctic #minimal)
Cool blue and arctic cyan palette based on the Nord color scheme.
Theme 'dracula' installed successfully. Path: /home/user/.config/xfetch/themes/dracula.jsonc Author: xscriptor Layout: section Activate with: xfetch theme set dracula Or add to config.jsonc: "theme": "dracula"
| Back | FazBrowse Home | New Git URL |