diff --git a/packages/desktop/src/components/lines/lineRow.tsx/index.tsx b/packages/desktop/src/components/lines/lineRow.tsx/index.tsx
index 033528f..fa14c04 100644
--- a/packages/desktop/src/components/lines/lineRow.tsx/index.tsx
+++ b/packages/desktop/src/components/lines/lineRow.tsx/index.tsx
@@ -80,7 +80,7 @@ export default function LineRow({
{/* status dot */}
diff --git a/packages/desktop/src/electron/constants.ts b/packages/desktop/src/electron/constants.ts
index eb8a9ab..46dd783 100644
--- a/packages/desktop/src/electron/constants.ts
+++ b/packages/desktop/src/electron/constants.ts
@@ -28,7 +28,7 @@ export const DimensionPresets = {
},
terminalDetailOverlay: {
height: 675,
- width: 1100,
+ width: 800,
},
// todo: typically just send whatever dimensions are needed
overlayMode: {
diff --git a/packages/desktop/src/index.ts b/packages/desktop/src/index.ts
index 81d9330..bb5ddc1 100644
--- a/packages/desktop/src/index.ts
+++ b/packages/desktop/src/index.ts
@@ -1,4 +1,11 @@
-import { BrowserWindow, app, dialog, globalShortcut, ipcMain } from "electron";
+import {
+ BrowserWindow,
+ Menu,
+ app,
+ dialog,
+ globalShortcut,
+ ipcMain,
+} from "electron";
import Channels, { Dimensions } from "./electron/constants";
import { DimensionPresets } from "./electron/constants";
@@ -32,7 +39,9 @@ const createWindow = (): void => {
},
alwaysOnTop: true,
icon: "./assets/1024x1024.icns",
- autoHideMenuBar: true,
+
+ frame: false,
+ roundedCorners: false,
});
// and load the index.html of the app.
diff --git a/packages/desktop/src/pages/terminal/index.tsx b/packages/desktop/src/pages/terminal/index.tsx
index f6b874e..f455936 100644
--- a/packages/desktop/src/pages/terminal/index.tsx
+++ b/packages/desktop/src/pages/terminal/index.tsx
@@ -33,7 +33,7 @@ export default function NirvanaTerminal({
{/* tuned in lines block */}
-
+
{/* tuned in header + general controls */}
diff --git a/packages/desktop/src/styles/index.css b/packages/desktop/src/styles/index.css
index caa522c..113976b 100644
--- a/packages/desktop/src/styles/index.css
+++ b/packages/desktop/src/styles/index.css
@@ -12,3 +12,12 @@
button {
@apply transition-all;
}
+
+#titlebar {
+ -webkit-user-select: none;
+ -webkit-app-region: drag;
+}
+
+.titlebar-button {
+ -webkit-app-region: no-drag;
+}