2022-02-26 21:26:16 +00:00
|
|
|
import {contextBridge, ipcRenderer} from "electron";
|
2022-03-04 17:53:18 +00:00
|
|
|
console.log("ArmCord Settings");
|
2022-07-15 21:04:00 +00:00
|
|
|
|
2022-02-26 21:26:16 +00:00
|
|
|
contextBridge.exposeInMainWorld("settings", {
|
2022-03-04 17:53:18 +00:00
|
|
|
save: (...args: any) => ipcRenderer.send("saveSettings", ...args),
|
2022-06-12 11:18:18 +00:00
|
|
|
getLang: (toGet: string) =>
|
|
|
|
ipcRenderer.invoke("getLang", toGet).then((result) => {
|
|
|
|
return result;
|
|
|
|
}),
|
2022-03-04 17:53:18 +00:00
|
|
|
get: (toGet: string) =>
|
|
|
|
ipcRenderer.invoke("getSetting", toGet).then((result) => {
|
|
|
|
return result;
|
2022-07-15 21:04:00 +00:00
|
|
|
}), //jank but works
|
|
|
|
openThemesFolder: () => ipcRenderer.send("openThemesFolder"),
|
|
|
|
openPluginsFolder: () => ipcRenderer.send("openPluginsFolder"),
|
|
|
|
openStorageFolder: () => ipcRenderer.send("openStorageFolder"),
|
|
|
|
copyDebugInfo: () => ipcRenderer.send("copyDebugInfo")
|
2022-03-04 17:53:18 +00:00
|
|
|
});
|