shadowm

Untitled

Apr 4th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. shadowm@nanacore:~% cat bin/run-xephyr
  2. #!/bin/sh
  3.  
  4. die() { echo $*; exit 1; }
  5.  
  6. if [ -z $DISPLAY ]; then
  7.         die "DISPLAY is not set."
  8. fi
  9.  
  10. NESTED_DISPLAY=:1.0
  11.  
  12. XRES=1152 # 1280 * 0.9
  13. YRES=720  #  800 * 0.9
  14.  
  15. Xephyr $NESTED_DISPLAY -host-cursor -screen ${XRES}x${YRES}x32 -dpi 96 $@
Advertisement
Add Comment
Please, Sign In to add comment