Last active
July 19, 2020 04:40
-
-
Save willwm/265942449ad5a341fef5c7e28e84af0a to your computer and use it in GitHub Desktop.
Resize and Center With wmctrl
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
# https://forums.linuxmint.com/viewtopic.php?p=1543828#p1543828 | |
# https://linux.die.net/man/1/wmctrl | |
# 1800x1500 (Center) | |
wmctrl -r :ACTIVE: -e 0,1020,330,1800,1500 | |
# 2560x1600 (Center) | |
wmctrl -r :ACTIVE: -e 0,640,280,2560,1600 | |
# 3200x1900 (Center) | |
wmctrl -r :ACTIVE: -e 0,320,130,3200,1900 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment