forked from ublue-os/bazzite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(kde): Ship an incredibly minor gtk.css theme to to make prompt f…
…eel at home, adjusts window geometry and nothing else.
- Loading branch information
Showing
4 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
system_files/desktop/kinoite/usr/etc/skel/.config/gtk-4.0/gtk.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@import 'colors.css'; | ||
@import 'kde-window-geometry.css' |
35 changes: 35 additions & 0 deletions
35
system_files/desktop/kinoite/usr/etc/skel/.config/gtk-4.0/kde-window-geometry.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
Extremely trimmed down version of https://github.com/MrCompoopter/Libadwaita-Breeze-Dark | ||
Modifies only the window shape, and otherwise makes no other changes. | ||
This should ensure compatibility with most if not all themes and applications. | ||
*/ | ||
|
||
window { | ||
border-radius: 3px 3px 0 0; | ||
border-width: 0px; | ||
margin: 0px; | ||
} | ||
|
||
window.maximized { | ||
border-radius: 0; | ||
} | ||
|
||
.maximized window, | ||
.fullscreen window, | ||
.tiled window { | ||
border-radius: 0; | ||
} | ||
|
||
.popup window { | ||
border-radius: 3px; | ||
} | ||
|
||
.csd window { | ||
border-radius: 3px; | ||
} | ||
|
||
.solid-csd window { | ||
border-radius: 0; | ||
margin: 0; | ||
border-width: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters