MyNixOS website logo
option

programs.anyrun.config.width

The width of the runner.

This is a numeric option - pass either { absolute = int; }; or { fraction = float; };. when using absolute it sets the absolute value in pixels, when using fraction, it sets a fraction of the width or height of the full screen (depends on exclusive zones and the settings related to them) window.

Declarations
Type
submodule
Default
{
  absolute = 800;
}
Example
''
  { absolute = 200; };
  or
  { fraction = 0.4; };
''