Created
July 24, 2016 16:06
-
-
Save ryot4/f2b6c610c870f7b4632b31aa6b4c1b13 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
xephyr_options="-ac -screen ${1:-800x600}" | |
xephyr=$(which Xephyr) | |
if [ -z "$xephyr" ]; then | |
echo 'Xephyr not found' | |
exit 1 | |
fi | |
startx "$HOME/.xephyr_session" -- "$xephyr" $xephyr_options |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment