We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
source: https://superuser.com/a/153337/118214
Relying on wmctrl (resize window to 90% of it's original size)
wmctrl
#!/bin/sh set -- $(xwininfo -root| awk -F '[ :]+' '/ (Width|Height):/ { print $3 }') width=$1 height=$2 wmctrl -r :ACTIVE: -e 0,-1,-1,$((width*90/100)),$((height*90/100))
The text was updated successfully, but these errors were encountered:
endorama
No branches or pull requests
source: https://superuser.com/a/153337/118214
solution
Relying on
wmctrl
(resize window to 90% of it's original size)The text was updated successfully, but these errors were encountered: