-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
62 lines (50 loc) · 1.14 KB
/
main.js
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
61
62
const {
app,
BrowserWindow,
clipboard,
ipcMain,
globalShortcut,
screen
} = require('electron')
let win;
const createWindow = () => {
win = new BrowserWindow({
width: 200,
height: 300,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
enableRemoteModule: true,
}
})
win.loadFile('www/index.html')
win.setMenu(null);
}
ipcMain.on('cc-write', (event, args) => {
clipboard.writeText(args)
})
ipcMain.on('cc-close', () => {
win.hide()
})
app.whenReady().then(() => {
createWindow()
let cache;
let items = []
setInterval(() => {
const clip = clipboard.readText()
if (cache !== clip) {
items.push(clip)
}
cache = clip
}, 1000)
win.on('blur', () => win.hide())
globalShortcut.register('Alt+V', () => {
const mousePosition = screen.getCursorScreenPoint()
win.setPosition(mousePosition.x, mousePosition.y)
win.show()
win.webContents.send('cc-read', items)
})
ipcMain.on('cc-hide', () => {
win.hide()
})
})