2024-09-12 13:11:46 +02:00
|
|
|
import appEvents from './app/index.js'
|
2023-10-12 11:35:27 +02:00
|
|
|
import handles from './handles/index.js'
|
2024-09-07 19:55:54 +02:00
|
|
|
import shortcuts from './shortcuts/index.js'
|
2024-05-14 13:16:46 +02:00
|
|
|
import theme from './theme/index.js'
|
2024-09-07 19:55:54 +02:00
|
|
|
import tray from './tray/index.js'
|
|
|
|
import updater from './updater/index.js'
|
2023-09-16 12:04:14 +02:00
|
|
|
|
2023-10-11 12:54:41 +02:00
|
|
|
export default (mainWindow) => {
|
2024-09-12 13:11:46 +02:00
|
|
|
appEvents(mainWindow)
|
2023-10-21 10:28:14 +02:00
|
|
|
handles(mainWindow)
|
|
|
|
updater(mainWindow)
|
|
|
|
tray(mainWindow)
|
2024-05-14 13:16:46 +02:00
|
|
|
theme(mainWindow)
|
|
|
|
shortcuts(mainWindow)
|
2023-10-11 12:54:41 +02:00
|
|
|
}
|