1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 10:47:56 +01:00
upscayl/renderer/atoms/userSettingsAtom.ts

27 lines
606 B
TypeScript
Raw Normal View History

2023-09-09 13:03:16 +02:00
import { atom } from "jotai";
2023-04-09 07:16:15 +02:00
import { atomWithStorage } from "jotai/utils";
export const customModelsPathAtom = atomWithStorage<string | null>(
"customModelsPath",
null
);
2023-04-12 15:31:07 +02:00
2023-04-14 12:31:37 +02:00
export const scaleAtom = atomWithStorage<"2" | "3" | "4">("scale", "4");
2023-04-15 05:56:40 +02:00
2023-09-09 13:03:16 +02:00
export const batchModeAtom = atom<boolean>(false);
2023-04-20 20:34:49 +02:00
export const rememberOutputFolderAtom = atomWithStorage<boolean>(
"rememberOutputFolder",
false
);
2023-09-03 11:16:48 +02:00
export const dontShowCloudModalAtom = atomWithStorage<boolean>(
"dontShowCloudModal",
false
);
2023-09-18 20:30:43 +02:00
export const noImageProcessingAtom = atomWithStorage<boolean>(
"noImageProcessing",
false
);