[GH-ISSUE #1010] Change to a flat Windows logo #2560

Open
opened 2026-03-14 04:34:51 +03:00 by kerem · 11 comments
Owner

Originally created by @djsvi on GitHub (Mar 21, 2022).
Original GitHub issue: https://github.com/amidaware/tacticalrmm/issues/1010

I'd like the Windows logo image to be swapped with a flat version in keeping with the rest of TRMM's styling.

I'd much prefer a colourful one - https://commons.wikimedia.org/wiki/File:Microsoft_logo.svg - but if it must be blue there's this one - https://commons.wikimedia.org/wiki/File:Windows_logo_-_2021.svg

Thanks!

Originally created by @djsvi on GitHub (Mar 21, 2022). Original GitHub issue: https://github.com/amidaware/tacticalrmm/issues/1010 I'd like the Windows logo image to be swapped with a flat version in keeping with the rest of TRMM's styling. I'd much prefer a colourful one - https://commons.wikimedia.org/wiki/File:Microsoft_logo.svg - but if it must be blue there's this one - https://commons.wikimedia.org/wiki/File:Windows_logo_-_2021.svg Thanks!
Author
Owner

@sadnub commented on GitHub (Mar 21, 2022):

These are the icons available to choose from: https://quasar.dev/vue-components/icon#introduction

At the top of that page it shows the different icon services. Can you find something in there?

<!-- gh-comment-id:1073997414 --> @sadnub commented on GitHub (Mar 21, 2022): These are the icons available to choose from: https://quasar.dev/vue-components/icon#introduction At the top of that page it shows the different icon services. Can you find something in there?
Author
Owner

@djsvi commented on GitHub (Mar 21, 2022):

Ah. How about <font-awesome-icon icon="fa-brands fa-microsoft" /> then (or the equivalent from the library you are making heaviest use of)?

<!-- gh-comment-id:1074426330 --> @djsvi commented on GitHub (Mar 21, 2022): Ah. How about `<font-awesome-icon icon="fa-brands fa-microsoft" />` then (or the equivalent from the library you are making heaviest use of)?
Author
Owner

@djsvi commented on GitHub (Mar 21, 2022):

As a test I used the developer console to change from mdi-microsoft-windows to just mdi-microsoft and I think it looks much nicer flat..

image

<!-- gh-comment-id:1074463599 --> @djsvi commented on GitHub (Mar 21, 2022): As a test I used the developer console to change from mdi-microsoft-windows to just **mdi-microsoft** and I think it looks much nicer flat.. ![image](https://user-images.githubusercontent.com/79456430/159370483-861a5191-9250-45ee-a2c9-0a316689297e.png)
Author
Owner

@silversword411 commented on GitHub (Mar 22, 2022):

The all-square doesn't match Win10 start button, which the current icon does. #JustSayin

2022-03-21_220802 - explorer_Program_Manager

<!-- gh-comment-id:1074632305 --> @silversword411 commented on GitHub (Mar 22, 2022): The all-square doesn't match Win10 start button, which the current icon does. #JustSayin ![2022-03-21_220802 - explorer_Program_Manager](https://user-images.githubusercontent.com/13395348/159393127-f8fe540c-3b4d-45cd-86ae-97d6abff9a26.png)
Author
Owner

@djsvi commented on GitHub (Mar 22, 2022):

The all-square doesn't match Win10 start button, which the current icon does. #JustSayin

2022-03-21_220802 - explorer_Program_Manager

Yep, it looks crap there too :) Microsoft replaced it with a flat version in Windows 11 (though I certainly wouldn't recommend Windows 11 on that basis!)

<!-- gh-comment-id:1074639839 --> @djsvi commented on GitHub (Mar 22, 2022): > The all-square doesn't match Win10 start button, which the current icon does. #JustSayin > > ![2022-03-21_220802 - explorer_Program_Manager](https://user-images.githubusercontent.com/13395348/159393127-f8fe540c-3b4d-45cd-86ae-97d6abff9a26.png) Yep, it looks crap there too :) Microsoft replaced it with a flat version in Windows 11 (though I certainly wouldn't recommend Windows 11 on that basis!)
Author
Owner

@silversword411 commented on GitHub (Mar 22, 2022):

This is a personal taste...I think you'd need to have a vote on discord to decide this one ;)

<!-- gh-comment-id:1075593550 --> @silversword411 commented on GitHub (Mar 22, 2022): This is a personal taste...I think you'd need to have a vote on discord to decide this one ;)
Author
Owner

@wh1te909 commented on GitHub (Mar 22, 2022):

we should add a logos override file where you can specify your own logos for certain things like this

<!-- gh-comment-id:1075655636 --> @wh1te909 commented on GitHub (Mar 22, 2022): we should add a logos override file where you can specify your own logos for certain things like this
Author
Owner

@plao commented on GitHub (Mar 22, 2022):

we should add a logos override file where you can specify your own logos for certain things like this

👍

<!-- gh-comment-id:1075687024 --> @plao commented on GitHub (Mar 22, 2022): > we should add a logos override file where you can specify your own logos for certain things like this 👍
Author
Owner

@sadnub commented on GitHub (Apr 17, 2022):

Lets do a vote. I personally like the non-flat icon lol.

<!-- gh-comment-id:1100930799 --> @sadnub commented on GitHub (Apr 17, 2022): Lets do a vote. I personally like the non-flat icon lol.
Author
Owner

@dinger1986 commented on GitHub (Apr 17, 2022):

I'm with you @sadnub much prefer the non flat one

<!-- gh-comment-id:1100931379 --> @dinger1986 commented on GitHub (Apr 17, 2022): I'm with you @sadnub much prefer the non flat one
Author
Owner

@djsvi commented on GitHub (Apr 18, 2022):

I vote for the flat icon.

Here's a Tampermonkey script for those who prefer the flat icon (assuming the majority vote is to keep the current icon).

// ==UserScript==
// @name         Flat Microsoft Icon
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  replace mdi-microsoft-windows with mdi-microsoft 
// @author       You
// @match        https://yourtacticalrmmURL/
// ==/UserScript==

(function() {
    document.querySelectorAll(".mdi-microsoft-windows").forEach(elem => {
        elem.classList.remove("mdi-microsoft-windows");
        elem.classList.add("mdi-microsoft");
    });

    setTimeout(arguments.callee, 300);
})();  
<!-- gh-comment-id:1100971909 --> @djsvi commented on GitHub (Apr 18, 2022): I vote for the flat icon. Here's a Tampermonkey script for those who prefer the flat icon (assuming the majority vote is to keep the current icon). ``` // ==UserScript== // @name Flat Microsoft Icon // @namespace http://tampermonkey.net/ // @version 0.1 // @description replace mdi-microsoft-windows with mdi-microsoft // @author You // @match https://yourtacticalrmmURL/ // ==/UserScript== (function() { document.querySelectorAll(".mdi-microsoft-windows").forEach(elem => { elem.classList.remove("mdi-microsoft-windows"); elem.classList.add("mdi-microsoft"); }); setTimeout(arguments.callee, 300); })(); ```
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tacticalrmm#2560
No description provided.