{"id":13800701,"url":"https://github.com/tauri-apps/window-vibrancy","last_synced_at":"2026-04-26T10:00:33.021Z","repository":{"id":37770607,"uuid":"433520643","full_name":"tauri-apps/window-vibrancy","owner":"tauri-apps","description":"Make your windows vibrant.","archived":false,"fork":false,"pushed_at":"2026-03-23T13:25:44.000Z","size":3420,"stargazers_count":997,"open_issues_count":17,"forks_count":47,"subscribers_count":15,"default_branch":"dev","last_synced_at":"2026-04-26T06:03:07.983Z","etag":null,"topics":["acrylic","blur","macos","plugin","tao","tauri","tauri-plugin","vibrancy","windows","winit"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tauri-apps.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-30T17:19:44.000Z","updated_at":"2026-04-25T11:12:36.000Z","dependencies_parsed_at":"2023-09-21T15:34:31.551Z","dependency_job_id":"caeed7cc-66e9-4a12-a213-8596151e39ad","html_url":"https://github.com/tauri-apps/window-vibrancy","commit_stats":{"total_commits":145,"total_committers":17,"mean_commits":8.529411764705882,"dds":0.6068965517241379,"last_synced_commit":"b66aa110134f54023ea5d3172c669ecfa53b3892"},"previous_names":["tauri-apps/tauri-plugin-vibrancy"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/tauri-apps/window-vibrancy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tauri-apps%2Fwindow-vibrancy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tauri-apps%2Fwindow-vibrancy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tauri-apps%2Fwindow-vibrancy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tauri-apps%2Fwindow-vibrancy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tauri-apps","download_url":"https://codeload.github.com/tauri-apps/window-vibrancy/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tauri-apps%2Fwindow-vibrancy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32292958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acrylic","blur","macos","plugin","tao","tauri","tauri-plugin","vibrancy","windows","winit"],"created_at":"2024-08-04T00:01:15.259Z","updated_at":"2026-04-26T10:00:32.986Z","avatar_url":"https://github.com/tauri-apps.png","language":"Rust","readme":"# window-vibrancy\n\n[![](https://img.shields.io/crates/v/window-vibrancy)](https://crates.io/crates/window-vibrancy) [![](https://img.shields.io/docsrs/window-vibrancy)](https://docs.rs/window-vibrancy/) ![](https://img.shields.io/crates/l/window-vibrancy)\n[![Chat Server](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/SpmNs4S)\n\nMake your windows vibrant.\n\n\u003e [!Tip]\n\u003e If you're using `tauri@v1`, you need to use version `0.4` of this crate.\n\n## Platform-specific\n\n- **Linux**: Unsupported, Blur and any vibrancy effects are controlled by the compositor installed on the end-user system.\n\n## Example\n\n```rs\nuse window_vibrancy::{apply_blur, apply_vibrancy, NSVisualEffectMaterial};\n\n#[cfg(target_os = \"macos\")]\napply_vibrancy(\u0026window, NSVisualEffectMaterial::HudWindow, None, None).expect(\"Unsupported platform! 'apply_vibrancy' is only supported on macOS\");\n\n#[cfg(target_os = \"windows\")]\napply_blur(\u0026window, Some((18, 18, 18, 125))).expect(\"Unsupported platform! 'apply_blur' is only supported on Windows\");\n```\n\n## Tauri\n\nif you are using tauri, don't forget to:\n\n* set `html, body { background: transparent }` see [index.html#L12](https://github.com/tauri-apps/window-vibrancy/blob/dev/examples/tauri/public/index.html#L12)\n* set `\"windows\": [ { \"transparent\": true } ]` see [tauri.conf.json#L57](https://github.com/tauri-apps/window-vibrancy/blob/dev/examples/tauri/src-tauri/tauri.conf.json#L57)\n* on **macos** set `\"macOSPrivateApi\": true` see [tauri.conf.json#L49](https://github.com/tauri-apps/window-vibrancy/blob/dev/examples/tauri/src-tauri/tauri.conf.json#L49)\n\nFor a more complete example of usage with [tauri](https://tauri.app/), see [`examples/tauri`](https://github.com/tauri-apps/window-vibrancy/tree/dev/examples/tauri).\n\n## Available functions\n\n| Function                          |     Supported platforms      | Notes                                                                                              |\n|:----------------------------------|:----------------------------:|:---------------------------------------------------------------------------------------------------|\n| `apply_blur`\u0026`clear_blur`         | Windows  7/10/11 (22H1 only) | Bad performance when resizing/dragging the window on Windows 11 build 22621+.                      |\n| `apply_acrylic`\u0026`clear_acrylic`   |        Windows 10/11         | Bad performance when resizing/dragging the window on Windows 10 v1903+ and Windows 11 build 22000. |\n| `apply_mica`\u0026`clear_mica`         |          Windows 11          |                                                                                                    |\n| `apply_vibrancy`\u0026`clear_vibrancy` |    macOS 10.10 and newer     |                                                                                                    |\n\n## Screenshots\n\n\u003cp align=\"center\"\u003e\n\n| apply_blur | apply_acrylic | apply_mica | apply_vibrancy |\n| :---:      | :---:         | :---:      | :---:          |\n| ![apply_blur screenshot](./screenshots/apply_blur.png) | ![apply_blur screenshot](./screenshots/apply_acrylic.png) | ![apply_mica screenshot](./screenshots/apply_mica.png) | ![apply_vibrancy screenshot](./screenshots/apply_vibrancy.png) |\n\n\u003c/p\u003e\n","funding_links":[],"categories":["Rust","Development"],"sub_categories":["Plugins"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftauri-apps%2Fwindow-vibrancy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftauri-apps%2Fwindow-vibrancy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftauri-apps%2Fwindow-vibrancy/lists"}