From 8ad69b064411012b3ac87e59947112188dd5a4bc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Sep 2025 13:55:35 +0000 Subject: [PATCH] Add documentation for new Adwaita window button variant Co-authored-by: vinceliuice <7604295+vinceliuice@users.noreply.github.com> --- README.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e22c7aa..fcc370ad 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ OPTIONS: -c, --color [light|dark] Set theme color variants. Repeatable. Default is all variants - -a, --alt [normal|alt|all] + -a, --alt [normal|alt|adwaita|all] Set window control buttons variant. Repeatable. Default is 'normal' -t, --theme [default|blue|purple|pink|red|orange|yellow|green|grey|all] @@ -143,6 +143,34 @@ OPTIONS: +## Window Button Variants + +The WhiteSur theme supports different window control button styles to match various desktop preferences: + +### Available Variants + +- **`normal`** (default): macOS-style traffic light buttons with circular design +- **`alt`**: Alternative macOS-style buttons with different styling +- **`adwaita`**: GNOME Adwaita-style buttons with traditional rectangular design + +### Usage Examples + +```bash +# Install with default macOS-style buttons +./install.sh + +# Install with Adwaita/GNOME-style buttons +./install.sh -a adwaita + +# Install with alternative macOS-style buttons +./install.sh -a alt + +# Install all button variants +./install.sh -a all +``` + +The Adwaita variant is perfect for users who prefer the traditional GNOME window button style over the macOS traffic light design, providing better compatibility with applications that use default GTK theming. + ## Fix for libadwaita (not perfect)
Details (click to open)