mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
parent
458b942d64
commit
353925e564
2 changed files with 6 additions and 6 deletions
|
@ -30,9 +30,9 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
div#themes:after,
|
||||
div#armcord:after,
|
||||
div#forceQuit:after {
|
||||
div#acThemes:after,
|
||||
div#acSettings:after,
|
||||
div#acForceQuit:after {
|
||||
content: url("https://raw.githubusercontent.com/ArmCord/BrandingStuff/main/ac_white_plug16x.png");
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
|
|
@ -102,13 +102,13 @@ setInterval(() => {
|
|||
const tManager = advanced.cloneNode(true) as HTMLElement;
|
||||
const fQuit = advanced.cloneNode(true) as HTMLElement;
|
||||
acSettings.textContent = "ArmCord";
|
||||
acSettings.id = "armcord";
|
||||
acSettings.id = "acSettings";
|
||||
acSettings.onclick = () => ipcRenderer.send("openSettingsWindow");
|
||||
tManager.textContent = "Themes";
|
||||
tManager.id = "themes";
|
||||
tManager.id = "acThemes";
|
||||
tManager.onclick = () => ipcRenderer.send("openManagerWindow");
|
||||
fQuit.textContent = "Force Quit";
|
||||
fQuit.id = "forceQuit";
|
||||
fQuit.id = "acForceQuit";
|
||||
fQuit.onclick = () => ipcRenderer.send("win-quit");
|
||||
advanced.insertAdjacentElement("afterend", acSettings);
|
||||
advanced.insertAdjacentElement("afterend", tManager);
|
||||
|
|
Loading…
Reference in a new issue