Skip to content
Jacob Henn edited this page Jan 7, 2023 · 5 revisions

configuring guac

guac can be configured persistently through the configuration file, or transiently through the :set command (see commands).

configuration file

the configuration file is a toml file. it is looked for in the path starting at the user's configuration directory, then under guac, then under config.toml. on different OSs, this will look like:

  • Linux: /home/alice/.config/guac/config.toml
  • macOS: /Users/Alice/Library/Application Support/guac/config.toml
  • Windows: C:\Users\Alice\AppData\Roaming\guac\config.toml

example configuration file

angle_measure = "deg"
radix = "hex"
precision = 7

structure

  • struct Config
    • angle_measure: AngleMeasure (see angle measures)
    • radix: Radix (see radices)
    • precision: usize: the number of digits to display after the radix point of approximate numbers
Clone this wiki locally