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