Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README to reflect support for GPU Specific configs #5

Open
2 tasks
cecilia-sanare opened this issue Jun 27, 2024 · 0 comments
Open
2 tasks

Update README to reflect support for GPU Specific configs #5

cecilia-sanare opened this issue Jun 27, 2024 · 0 comments

Comments

@cecilia-sanare
Copy link
Member

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;
};
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant