first commit

This commit is contained in:
编码猿
2024-09-27 01:23:51 +08:00
commit 72ab70b6fd
212 changed files with 30296 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { app, BrowserWindow, TouchBar, dialog, shell } from "electron";
import Windows from "@/core/model/Windows.model";
import Config from "@config/Index.config";
const { TouchBarLabel, TouchBarButton,TouchBarSpacer } = TouchBar;
export class Touchbar {
constructor() {
Windows.CurrentBrowserWindow.setTouchBar(new TouchBar(Config.TouchBarConfig))
}
}