note that this reverts from a SXMO_SWAY_SCALE of 2.0 -> 1.5 there may be other idiomatic ways to tune that
18 lines
477 B
Nix
18 lines
477 B
Nix
{ sane-lib, ... }:
|
|
{
|
|
sane.gui.sxmo = {
|
|
settings = {
|
|
# touch screen
|
|
SXMO_LISGD_INPUT_DEVICE = "/dev/input/by-path/platform-1c2ac00.i2c-event";
|
|
# vol and power are detected correctly by upstream
|
|
|
|
# preferences
|
|
# N.B. some deviceprofiles explicitly set SXMO_SWAY_SCALE, overwriting what we put here.
|
|
SXMO_SWAY_SCALE = "1.5";
|
|
SXMO_ROTATION_GRAVITY = "12800";
|
|
DEFAULT_COUNTRY = "US";
|
|
BROWSWER = "librewolf";
|
|
};
|
|
};
|
|
}
|