mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-09-10 13:54:41 +02:00
10 lines
465 B
TypeScript
10 lines
465 B
TypeScript
export const flags: { [key: string]: { flag: string; value?: string }[] } = {
|
|
gpuRasterization: [{ flag: "enable-gpu-rasterization", value: undefined }],
|
|
disableHardwareMediaKeys: [{ flag: "disable-features", value: "HardwareMediaKeyHandling" }],
|
|
enableWaylandSupport: [
|
|
{ flag: "enable-features", value: "UseOzonePlatform" },
|
|
{ flag: "ozone-platform-hint", value: "auto" },
|
|
{ flag: "enable-features", value: "WaylandWindowDecorations" },
|
|
],
|
|
};
|