diff --git a/discord.png b/discord.png new file mode 100644 index 0000000..2bff157 Binary files /dev/null and b/discord.png differ diff --git a/index.html b/index.html index 35a74ac..623f28a 100644 --- a/index.html +++ b/index.html @@ -10,11 +10,9 @@ :root { background-color: #2c2f33; - } - - .titlebar { - font-family: Verdana, Geneva, Tahoma, sans-serif; - background-color: #202225; + --header-secondary: #b9bbbe; + --header-primary: #fff; + --background-tertiary: #202225; } body { diff --git a/main.js b/main.js index 7b65f28..df9f9a1 100644 --- a/main.js +++ b/main.js @@ -21,7 +21,7 @@ function createWindow() { mainWindow = new BrowserWindow({ width: 800, height: 600, - icon: __dirname + "/discord.ico", + icon: __dirname + "/discord.png", title: "ArmCord", frame: false, webPreferences: { diff --git a/preload.js b/preload.js index a98f193..27299d1 100644 --- a/preload.js +++ b/preload.js @@ -26,10 +26,21 @@ electronLocalshortcut.register(currentWindow, "F5", () => { electronLocalshortcut.register(currentWindow, "F12", () => { currentWindow.webContents.openDevTools(); }); +electronLocalshortcut.register(currentWindow, "F1", () => { + require("shell").openExternal("https://support.discord.com/") +}); +electronLocalshortcut.register(currentWindow, "F2", () => { + window.location.href = "https://discord.com/invite/F25bc4RYDt" +}); require("./utils/capturer.js") addStyle(` @import url("https://kckarnige.github.io/femboi_owo/discord-font.css"); +:root { + --window-buttons: var(--header-secondary); + --cord-color: var(--header-primary); + --armcord-color: #7289da; +} .base-3dtUhz, .sidebar-2K8pFh { display: -webkit-box; display: -ms-flexbox; @@ -47,7 +58,7 @@ div.menubar[role="menubar"] { .window-title:after { content: "Cord"; - color: #fff; + color: var(--cord-color) !important; font-weight: normal; font-size: 14px; font-family: Discordinated; @@ -55,7 +66,7 @@ div.menubar[role="menubar"] { .window-title:before { content: "ARM"; - color: #7289da; + color: var(--armcord-color); font-weight: normal; font-size: 14px; font-family: Helvetica, sans-serif; @@ -68,8 +79,12 @@ div.menubar[role="menubar"] { } .titlebar { - background: #202225 !important; + background: var(--background-tertiary) !important; + font-family: Verdana, Geneva, Tahoma, sans-serif; +} + +.titlebar .window-controls-container .window-icon { + background: var(--window-buttons) !important; } `); }) -