-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pypeaday
committed
May 6, 2024
1 parent
a83f55c
commit 30d1f41
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |