bottom-window
Version:
Send a window to the bottom of the Z-order by title (Windows only)
31 lines (20 loc) ⢠448 B
Markdown
# bottom-window
Send a window to the bottom of the Z-order by its title (Windows only).
## Installation
```bash
npm install bottom-window
````
## Usage
```js
const { sendToBottom } = require('bottom-window');
sendToBottom("Untitled - Notepad", (err, output) => {
if (err) console.error("Failed:", err.message);
else console.log(output);
});
```
## CLI
```bash
npx BottomWindow -t "Untitled - Notepad"
```
## Platform
ā
Windows only