-
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.
- Loading branch information
1 parent
e0942ac
commit 1b2de21
Showing
4 changed files
with
17 additions
and
5 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
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,9 @@ | ||
# FAQ | ||
|
||
This is a growing collection of FAQs. | ||
|
||
## The window cannot receive mouse/keyboard events when set as desktop underlay. | ||
|
||
This is the **expected behavior**: setting a window as a desktop underlay disables all types of user interactions with that window. It is indeed possible to use system APIs to listen to mouse and keyboard inputs and forward them to the window, but this is out of scope of this plugin. | ||
|
||
Alternatively, you may consider using Tauri's `always_on_bottom` and `ignore_cursor_events` features to make a window that always stays below other windows and that the mouse can click through. |
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "tauri-plugin-desktop-underlay-api", | ||
"version": "0.0.1", | ||
"author": "Yao Xiao <[email protected]>", | ||
"description": "Tauri plugin for making a window a desktop underlay, as if it were a wallpaper.", | ||
"description": "Tauri plugin for making a window a desktop underlay, attached to the desktop, above the wallpaper, and below desktop icons.", | ||
"type": "module", | ||
"types": "./dist-js/index.d.ts", | ||
"main": "./dist-js/index.cjs", | ||
|
@@ -13,8 +13,7 @@ | |
"require": "./dist-js/index.cjs" | ||
}, | ||
"files": [ | ||
"dist-js", | ||
"README.md" | ||
"dist-js" | ||
], | ||
"scripts": { | ||
"prepublishOnly": "pnpm build", | ||
|