Files
dotfiles/k9s/.config/k9s/k9s-theme-sync.sh
Matt Anderson 71fe62d71c many updates
2026-05-29 17:50:15 -05:00

18 lines
328 B
Bash
Executable File

#!/bin/bash
appearance=$(defaults read -g AppleInterfaceStyle 2>/dev/null)
if [[ "$appearance" = "Dark" ]]; then
skin="ember"
else
skin="ember-light"
fi
config_file="$HOME/dotfiles/k9s/.config/k9s/config.yaml"
if [[ -f "$config_file" ]]; then
sed -i '' "s/skin: .*/skin: $skin/" "$config_file"
fi
exec k9s "$@"