mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
11 lines
181 B
JavaScript
Executable File
11 lines
181 B
JavaScript
Executable File
const electron = require('electron')
|
|
const app = electron.app
|
|
|
|
app.on('ready', function () {
|
|
if (process.platform === 'darwin') {
|
|
app.dock.hide()
|
|
}
|
|
})
|
|
|
|
module.exports = app
|