mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
simplified linux icon
This commit is contained in:
parent
3f858cae68
commit
a80c680914
@ -1,6 +1,5 @@
|
||||
const electron = require('electron');
|
||||
const os = require('os');
|
||||
const fs = require('fs');
|
||||
const { Menu } = require('electron');
|
||||
const { fork } = require('child_process');
|
||||
const { autoUpdater } = require('electron-updater');
|
||||
@ -25,18 +24,6 @@ let splashWindow;
|
||||
log.transports.file.level = 'debug';
|
||||
autoUpdater.logger = log;
|
||||
|
||||
function datadir() {
|
||||
const dir = path.join(os.homedir(), 'dbgate-data');
|
||||
if (!fs.existsSync(dir)) {
|
||||
try {
|
||||
fs.mkdirSync(dir);
|
||||
} catch (err) {
|
||||
console.error(`Error creating ${dir} directory`, err);
|
||||
}
|
||||
}
|
||||
return dir;
|
||||
}
|
||||
|
||||
function hideSplash() {
|
||||
if (splashWindow) {
|
||||
splashWindow.destroy();
|
||||
@ -164,9 +151,7 @@ function createWindow() {
|
||||
});
|
||||
mainWindow.loadURL(startUrl);
|
||||
if (os.platform() == 'linux') {
|
||||
const iconFile = path.join(datadir(), 'dbgate-icon.png');
|
||||
fs.copyFileSync(path.resolve(__dirname, '../icon.png'), iconFile);
|
||||
mainWindow.setIcon(iconFile);
|
||||
mainWindow.setIcon(path.resolve(__dirname, '../icon.png'));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -12,11 +12,7 @@ const ensureDirectory = (dir, clean) => {
|
||||
}
|
||||
if (!fs.existsSync(dir)) {
|
||||
console.log(`Creating directory ${dir}`);
|
||||
try {
|
||||
fs.mkdirSync(dir);
|
||||
} catch (err) {
|
||||
console.error(`Error creating ${dir} directory`, err);
|
||||
}
|
||||
fs.mkdirSync(dir);
|
||||
}
|
||||
createDirectories[dir] = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user