Skip to content

Instantly share code, notes, and snippets.

@psyomn
Created April 11, 2014 22:56
Show Gist options
  • Select an option

  • Save psyomn/10508106 to your computer and use it in GitHub Desktop.

Select an option

Save psyomn/10508106 to your computer and use it in GitHub Desktop.
mk.screen for quick screen making
#!/usr/bin/env bash
# Standard screen stuff that I do too many times
# add this at something like $HOME/.custom/bin/
# and add that path to your PATH env to run this
#
# Example usage:
# mk.screen myproject
screen -dmS $1
screen -S $1 -X screen -t src
screen -S $1 -X screen -t test
screen -S $1 -X screen -t tasks
screen -S $1 -X screen -t run
screen -r $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment