Send a window to the bottom of the Z-order by title (Windows only)
npm install bottom-windowSend a window to the bottom of the Z-order by its title (Windows only).
``bash``
npm install bottom-window
`js
const { sendToBottom } = require('bottom-window');
sendToBottom("Untitled - Notepad", (err, output) => {
if (err) console.error("Failed:", err.message);
else console.log(output);
});
`
`bash``
npx BottomWindow -t "Untitled - Notepad"
ā
Windows only