Skip to content

Update README to reflect support for GPU Specific configs #5

Open
@cecilia-sanare

Description

Tasks

  • remove TODO section as its no longer necessary
  • update example to showcase adding gpu specific configs

Related Code

export type App = {
id: string;
name: string;
tweaks: SystemTweaks & {
system: {
gpu_driver: Partial<Record<GpuDriver, SystemTweaks>>;
};
};
issues: {
solution?: string;
description: string;
}[];
};
// Even beyond AMD vs Nvidia this will likely have a way bigger impact once NVK fully drops
export enum GpuDriver {
AMD = 'amd',
Nvidia = 'nvidia',
}
export type SystemTweaks = {
tricks: (DllValues | FontValues | SettingsValues)[];
env: Record<string, string>;
args: string[];
settings: {
gamemode?: boolean;
mangohud?: boolean;
};
};

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions