diff --git a/src/main/index.ts b/src/main/index.ts
index d223090..3e72399 100644
--- a/src/main/index.ts
+++ b/src/main/index.ts
@@ -155,6 +155,13 @@ export function createWindow(show = false): void {
x: mainWindowState.x,
y: mainWindowState.y,
show: false,
+ frame: false,
+ titleBarStyle: 'hidden',
+ titleBarOverlay: {
+ color: '#00000000',
+ symbolColor: '#8D8D8D',
+ height: 48
+ },
autoHideMenuBar: true,
...(process.platform === 'linux' ? { icon: icon } : {}),
webPreferences: {
diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx
index 7004cd4..eb125b9 100644
--- a/src/renderer/src/App.tsx
+++ b/src/renderer/src/App.tsx
@@ -106,12 +106,13 @@ const App: React.FC = () => {
return (
-
+
Mihomo Party