Skip to content

Commit

Permalink
k9s skins
Browse files Browse the repository at this point in the history
  • Loading branch information
pypeaday committed May 6, 2024
1 parent a83f55c commit 30d1f41
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pages/til/customize-k9s.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
date: 2024-05-06 11:57:07
templateKey: til
title: Customize K9s
published: True
tags:
- cli
- homelab
- tech

---

To customize k9s use the skins from catppuccin or the ones k9s supplies

```bash
OUT="${XDG_CONFIG_HOME:-$HOME/.config}/k9s/skins"
mkdir -p "$OUT"
curl -L https://github.com/catppuccin/k9s/archive/main.tar.gz | tar xz -C "$OUT" --strip-components=2 k9s-main/dist
```

Then edit your k9s config

```
# ~/.config/k9s/config.yml
k9s:
ui:
skin: catppuccin-mocha
# ...or another flavor:
# skin: catppuccin-macchiato
# skin: catppuccin-frappe
# skin: catppuccin-latte
# ...or the transparent variants:
# skin: catppuccin-mocha-transparent
# skin: catppuccin-macchiato-transparent
# skin: catppuccin-frappe-transparent
# skin: catppuccin-latte-transparent
```

Other k9s skins are available [here](https://github.com/derailed/k9s/tree/master/skins)

0 comments on commit 30d1f41

Please sign in to comment.