chore: lint
This commit is contained in:
parent
dd44602730
commit
894ec4b902
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ const autoStartWindowsMac: AutoStart = {
|
|||
isEnabled: () => app.getLoginItemSettings().openAtLogin,
|
||||
wasAutoStarted: () => app.getLoginItemSettings().wasOpenedAtLogin,
|
||||
enable: () => app.setLoginItemSettings({ openAtLogin: true }),
|
||||
disable: () => app.setLoginItemSettings({ openAtLogin: false }),
|
||||
disable: () => app.setLoginItemSettings({ openAtLogin: false })
|
||||
};
|
||||
|
||||
export const autoStart = process.platform === "linux" ? makeAutoStartLinux() : autoStartWindowsMac;
|
||||
|
|
|
@ -24,6 +24,7 @@ import type { SettingsStore } from "shared/utils/SettingsStore";
|
|||
import { ICON_PATH } from "../shared/paths";
|
||||
import { createAboutWindow } from "./about";
|
||||
import { initArRPC } from "./arrpc";
|
||||
import { autoStart } from "./autoStart";
|
||||
import {
|
||||
DATA_DIR,
|
||||
DEFAULT_HEIGHT,
|
||||
|
@ -39,7 +40,6 @@ import { createSplashWindow } from "./splash";
|
|||
import { makeLinksOpenExternally } from "./utils/makeLinksOpenExternally";
|
||||
import { applyDeckKeyboardFix, askToApplySteamLayout, isDeckGameMode } from "./utils/steamOS";
|
||||
import { downloadVencordFiles, ensureVencordFiles } from "./utils/vencordLoader";
|
||||
import { autoStart } from "./autoStart";
|
||||
|
||||
let isQuitting = false;
|
||||
let tray: Tray;
|
||||
|
|
Loading…
Reference in a new issue