clearlysid / tauri-plugin-decorum

Opinionated window decoration controls for apps built with the Tauri framework.
https://crates.io/crates/tauri-plugin-decorum
MIT License
138 stars 10 forks source link

Hiding/removing controls #28

Open basharovV opened 2 weeks ago

basharovV commented 2 weeks ago

Hi, thanks for this library! I was looking to have more control over the window buttons without affecting window borders and shadows.

Is it possible to remove/hide the buttons programmatically? For my use-case: I want to be able to hide them in the mini-player.

clearlysid commented 6 days ago

Hey @basharovV I think you can just use some CSS to hide the window buttons (on Windows)...

div[data-tauri-decorum-tb] {
   display: none;
}