├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── screenshot.webp ├── btop.tera ├── justfile ├── renovate.json └── themes ├── catppuccin_frappe.theme ├── catppuccin_latte.theme ├── catppuccin_macchiato.theme └── catppuccin_mocha.theme /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/README.md -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/assets/mocha.webp -------------------------------------------------------------------------------- /assets/screenshot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/assets/screenshot.webp -------------------------------------------------------------------------------- /btop.tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/btop.tera -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers btop.tera 6 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/renovate.json -------------------------------------------------------------------------------- /themes/catppuccin_frappe.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/themes/catppuccin_frappe.theme -------------------------------------------------------------------------------- /themes/catppuccin_latte.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/themes/catppuccin_latte.theme -------------------------------------------------------------------------------- /themes/catppuccin_macchiato.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/themes/catppuccin_macchiato.theme -------------------------------------------------------------------------------- /themes/catppuccin_mocha.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/btop/HEAD/themes/catppuccin_mocha.theme --------------------------------------------------------------------------------