Skip to content

Instantly share code, notes, and snippets.

@viniciusgonmelo
Created January 4, 2024 03:56
Show Gist options
  • Save viniciusgonmelo/8184e8e28ab6d146d09d461b4c0a1295 to your computer and use it in GitHub Desktop.
Save viniciusgonmelo/8184e8e28ab6d146d09d461b4c0a1295 to your computer and use it in GitHub Desktop.
Redimensiona janelas precisamente com largura e altura no XFCE4
#!/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