Configuration
Configuration File Location
flux9s stores its configuration in a YAML file. The location depends on your operating system:
| OS | Location |
|---|---|
| Linux | ~/.config/flux9s/config.yaml |
| macOS | ~/.config/flux9s/config.yaml |
| Windows | %APPDATA%\flux9s\config.yaml |
Configuration Options
Read-Only Mode
By default, flux9s launches in readonly mode to prevent accidental changes. You can change this:
Via command line:
flux9s config set readOnly false
During a session:
Use the :readonly command to toggle readonly mode.
Readonly mode is enabled by default to prevent accidental modifications to your Flux resources. Only disable it if you need to perform operations.
UI Configuration
Skin Configuration
flux9s supports custom skins to personalize the interface. Skins follow a similar format to K9s but may require adjustments.
Set a skin for readonly mode:
flux9s config set ui.skinReadOnly rose-pine
Import and set a skin:
flux9s config skins set navy.yaml
Skins must be placed in your system’s flux9s/skins directory:
- Linux/macOS:
~/.config/flux9s/skins/ - Windows:
%APPDATA%\flux9s\skins\
Not all K9s skins are compatible with flux9s. flux9s skins follow a similar format but may require adjustments to work properly.
Command Reference
Show Help
flux9s config --help
Show all available configuration options.
Set Value
flux9s config set {KEY} {VALUE}
Set a configuration value.
Get Value
flux9s config get {KEY}
Get a configuration value.
Set Skin
flux9s config skins set {skin-file}
Import and set a skin from a YAML file.