Skip to content

Instantly share code, notes, and snippets.

@vovkab
Last active November 27, 2017 05:54
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vovkab/6018189 to your computer and use it in GitHub Desktop.
Save vovkab/6018189 to your computer and use it in GitHub Desktop.
Change size of Genymotion emulator
To make emulator looks crystal clear, easiest way - change window size to be exact size.
On linux there is command:
wmctrl -r "win" -e G,X,Y,W,H
G - gravity
X,Y - window coords
W - width
H - height
For 1280x800 window, command will be:
wmctrl -r Genymotion -e 0,0,0,1345,800
1345 - window width, where emulator working size is 1280 + 65 pixels for side bar
800 - window height
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment