Configuration

Configure flux9s to suit your needs

Configuration File Location

flux9s stores its configuration in a YAML file. The location depends on your operating system:

OSLocation
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.

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\

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.

Last modified December 12, 2025: Website and CI fixes (1dd6ede)