23 lines
462 B
TypeScript
23 lines
462 B
TypeScript
const DEFAULT_WIDTH = 556
|
|
|
|
const DEFAULT_HEIGHT = 60
|
|
|
|
export const quickAskWindowConfig: Electron.BrowserWindowConstructorOptions = {
|
|
width: DEFAULT_WIDTH,
|
|
height: DEFAULT_HEIGHT,
|
|
skipTaskbar: true,
|
|
acceptFirstMouse: true,
|
|
hasShadow: true,
|
|
alwaysOnTop: true,
|
|
show: false,
|
|
fullscreenable: false,
|
|
resizable: false,
|
|
center: true,
|
|
movable: false,
|
|
maximizable: false,
|
|
focusable: true,
|
|
transparent: true,
|
|
frame: false,
|
|
type: 'panel',
|
|
}
|