EZ Actions

Configuration

Open config from Menu Editor using the Config button.

The config UI has three sections:

  • General
  • Animations
  • Design

General

SettingTypeRange / ValuesDefault
Move While Radial OpenbooleanON/OFFON
Show Hover LabelbooleanON/OFFON
Command Editor Visible Linesint1-205

Animations

SettingTypeRange / ValuesDefault
Animations EnabledbooleanON/OFFON
Open/Close AnimationbooleanON/OFFON
Hover AnimationbooleanON/OFFON
Open StyleenumWIPE, FADE, NONEWIPE
DirectionenumCW, CCWCW
Hover StyleenumFILL_SCALE, FILL_ONLY, SCALE_ONLY, NONEFILL_SCALE
Hover Grow Percentdouble0.0-0.50.05
Open/Close Durationint (ms)0-2000125

Design

SettingTypeRange / ValuesDefault
Deadzoneint0-9018
Outer Radiusint24-51272
Ring Thicknessint6-25628
Scale Start Thresholdint0-1288
Scale Per Itemint0-1006
Slice Gapint (deg)0-120
Design StyleenumSOLID, SEGMENTED, OUTLINE, GLASSSOLID
Ring ColorARGB int32-bit signed int0xAA000000
Hover ColorARGB int32-bit signed int0xFFF20044
Border ColorARGB int32-bit signed int0x66FFFFFF
Text ColorARGB int32-bit signed int0xFFFFFFFF

Preview

Preview opens a radial preview screen and loops animation with a 1s pause between loops.

Use this to tune visual settings before committing.

Save Behavior

  • Save writes values immediately to config files.
  • On save, screen returns to parent editor screen.

Config Files

  • config/ezactions/general-client.toml
  • config/ezactions/anim-client.toml
  • config/ezactions/design-client.toml
Deep dive: color format

Colors are stored as signed 32-bit ARGB ints.

Example:

  • 0xAARRGGBB
  • alpha AA, then red RR, green GG, blue BB

Negative decimal numbers are normal for opaque ARGB values.

JSON Example

JSON
{
  "openStyle": "WIPE",
  "openDirection": "CW",
  "hoverStyle": "FILL_SCALE",
  "designStyle": "SOLID",
  "ringColor": "0xAA000000",
  "hoverColor": "0xFFF20044",
  "borderColor": "0x66FFFFFF",
  "textColor": "0xFFFFFFFF"
}

Support This Project

Like this wiki and these mods?

Every bit of support helps me keep building features, writing docs, and shipping updates.

Back to top