Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #!/bin/bash -e
  2. chromium-browser -geometry 1280x720 # ignores the spec
  3. # firefox -geometry 1280x720 ignores the spec too
  4.  
  5. % firefox javascript:%20resizeTo(1280,720)
  6.  
  7. chromium-browser --window-size=800,600
  8. chromium-browser --window-size="800,600"
  9. chromium-browser --window-size=800x600
  10. chromium-browser -window-size=800,600
  11. chromium-browser -window-size=800x600
  12.  
  13. xdotool selectwindow windowsize 1280 720
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement