Created
January 4, 2024 03:56
-
-
Save viniciusgonmelo/8184e8e28ab6d146d09d461b4c0a1295 to your computer and use it in GitHub Desktop.
Redimensiona janelas precisamente com largura e altura no XFCE4
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
#!/bin/bash | |
if [ "$#" -ne 2 ]; then | |
echo "Uso: resizewindow largura altura" | |
exit 1 | |
fi | |
xdotool selectwindow windowsize $1 $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment