Docs

Post Installation Guide

Configure and customize your ksau installation

Documentation

Learn everything you need to know about ksau

Post-Installation Guide

Configuration

The tool stores its configuration in:

  • Linux/macOS: $HOME/.ksau/.conf/rclone.conf
  • Windows: %AppData%\ksau\.conf\rclone.conf

Refresh Configuration

After installation, run the following command to refresh the rclone configuration:

ksau-go refresh

Shell Completion

To enable command-line completion for your shell, run:

ksau-go completion bash >> ~/.bashrc && source ~/.bashrc  # For bash
ksau-go completion zsh >> ~/.zshrc && source ~/.zshrc    # For zsh
ksau-go completion powershell >> $PROFILE               # For PowerShell

Renaming the Tool

To rename the tool from ksau-go to ksau, you can create an alias in your shell configuration file:

alias ksau='ksau-go'

Add this line to your shell configuration file (~/.bashrc, ~/.zshrc, or $PROFILE for PowerShell) and reload the configuration:

source ~/.bashrc  # For bash
source ~/.zshrc   # For zsh
. $PROFILE        # For PowerShell

Environment Variables

If you need to set any environment variables for the tool, add them to your shell configuration file. For example:

export KSAU_GO_ENV_VAR=value

Replace KSAU_GO_ENV_VAR with the actual environment variable name and value with the desired value.

Additional Tips

  • Ensure your configuration file is properly formatted and contains all necessary settings.
  • Regularly update the tool to get the latest features and bug fixes.
  • Refer to the troubleshooting guide for common issues and solutions.