Skip to content

Commit be67c3b

Browse files
committed
v0.2.0-t
1 parent b40f027 commit be67c3b

4 files changed

Lines changed: 5943 additions & 0 deletions

File tree

index.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
const { app, BrowserWindow, session } = require('electron');
2+
const fs = require('fs');
3+
4+
let mainWindow;
5+
6+
app.whenReady().then(() => {
7+
mainWindow = new BrowserWindow({
8+
width: 800,
9+
height: 600,
10+
webPreferences: {
11+
nodeIntegration: false,
12+
contextIsolation: true,
13+
},
14+
});
15+
mainWindow.loadURL('https://linear.app/login');
16+
17+
app.on('window-all-closed', () => {
18+
if (process.platform !== 'darwin') {
19+
app.quit();
20+
}
21+
});
22+
});

installer.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
wget -O ~/.linear.AppImage
2+
sudo chmod +x ~/.linear.AppImage

0 commit comments

Comments
 (0)