1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-14 18:02:38 +01:00
upscayl/renderer/atoms/userSettingsAtom.ts

22 lines
508 B
TypeScript
Raw Normal View History

2023-09-09 16:33:16 +05:30
import { atom } from "jotai";
2023-04-09 10:46:15 +05:30
import { atomWithStorage } from "jotai/utils";
export const customModelsPathAtom = atomWithStorage<string | null>(
"customModelsPath",
null
);
2023-04-12 19:01:07 +05:30
2023-04-14 16:01:37 +05:30
export const scaleAtom = atomWithStorage<"2" | "3" | "4">("scale", "4");
2023-04-15 09:26:40 +05:30
2023-09-09 16:33:16 +05:30
export const batchModeAtom = atom<boolean>(false);
2023-04-21 00:04:49 +05:30
export const rememberOutputFolderAtom = atomWithStorage<boolean>(
"rememberOutputFolder",
false
);
2023-09-03 14:46:48 +05:30
export const dontShowCloudModalAtom = atomWithStorage<boolean>(
"dontShowCloudModal",
false
);