-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenderer.js
More file actions
60 lines (51 loc) · 1.41 KB
/
renderer.js
File metadata and controls
60 lines (51 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
function writeBootSetting(state) {
ipcRenderer.invoke('writeBootState', state);
}
async function readBootSetting() {
try {
const bootState = await ipcRenderer.invoke('readBootState');
return bootState;
} catch (error) {
console.error('Error reading boot state from renderer:', error);
return null;
}
}
function writePreviousBootSetting(state) {
ipcRenderer.invoke('writePreviousBootState', state);
}
async function readPreviousBootSetting() {
try {
const bootState = await ipcRenderer.invoke('readPreviousBootState');
return bootState;
} catch (error) {
console.error('Error reading previous boot state from renderer:', error);
return null;
}
}
function resetLoadFile() {
ipcRenderer.invoke('resetLoadFile');
}
async function getBaseDate() {
try {
const baseDate = await ipcRenderer.invoke('readBaseDate');
return baseDate;
} catch (error) {
console.error('Error reading base date from renderer:', error);
return null;
}
}
function checkLoadFile() {
ipcRenderer.invoke('checkLoadFile');
}
async function readLockNotifState() {
try {
const lockNotifState = await ipcRenderer.invoke('readLockNotifState');
return lockNotifState;
} catch (error) {
console.error('Error reading lockscreen notification state:', error);
return null;
}
}
function writeLockNotifState(state) {
ipcRenderer.invoke('writeLockNotifState', state);
}