Currently, Logseq displays the application title and icon on top of the window on Windows. This may be a matter of taste, but I think it would look much cleaner without it (macOS doesn’t have this, and it looks great!). The color difference between the theme and the window chrome is a bit jarring.
Bad3r
December 15, 2021, 7:39pm
#2
That’s not controlled by logseq. That’s controlled by windows window manager, that’s why it looks different on macOS. |
As far as I know, logseq can’t control the title bar. It’s controlled by the window manager.
alex0
December 15, 2021, 7:51pm
#3
Electron supports different degrees of customization of the titlebar on Windows:
The BrowserWindow module is the foundation of your Electron application, and it exposes many APIs that can change the look and behavior of your browser windows. In this tutorial, we will be going over the various use-cases for window customization on...
One is based on this Web standard:
# Window Controls Overlay for Installed Desktop Web Apps
## Status of this Document
This document is intended as a starting point for engaging the community and standards bodies in developing collaborative solutions fit for standardization. As the solutions to problems described in this document progress along the standards-track, we will retain this document as an archive and use this section to keep the community up-to-date with the most current standards venue and content location of future work and discussions.
* This document status: **Active**
* Expected venue: [W3C Web Applications Working Group](https://www.w3.org/2019/webapps/)
* Current version: this document
* See also: [w3c/manifest#847](https://github.com/w3c/manifest/issues/847)
* See also: [w3c/csswg-drafts#4721](https://github.com/w3c/csswg-drafts/issues/4721)
* See also: [WICG discourse thread](https://discourse.wicg.io/t/proposal-title-bar-customization-for-web-apps/4278)
## Table of Contents
- [Introduction](#introduction)
- [Examples of desktop apps customizing the title bar area](#examples-of-desktop-apps-customizing-the-title-bar-area)
- [Problem to solve: Installed desktop web apps title bar area is system reserved](#problem-to-solve-installed-desktop-web-apps-title-bar-area-is-system-reserved)
- [Goals](#goals)
- [Proposal](#proposal)
- [Overlaying Window Controls](#overlaying-window-controls-on-a-frameless-window)
- [Working Around the Window Controls Overlay](#working-around-the-window-controls-overlay)
- [JavaScript APIs](#javascript-apis)
This file has been truncated. show original
that is used for example by VS Code:
and Microsoft Teams:
that are applications by Microsoft. Also Spotify and many other Web-based applications use this.
2 Likes
Bad3r
December 15, 2021, 8:04pm
#4
Oh I didn’t know that. Thanks for the information
2 Likes