As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/sh | |
| # To run, download the script or copy the code to a '.sh' file (for example 'flutterrepair.sh') and run like any other script: | |
| # sh ./flutterrepair.sh | |
| # or | |
| # sudo sh flutterrepair.sh | |
| echo "Flutter Repair (by jeroen-meijer on GitHubGist)" | |
| echo Cleaning project... |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| fs = require 'fs' | |
| {exec} = require 'child_process' | |
| util = require 'util' | |
| growl = require 'growl' | |
| appFiles = [ | |
| 'src/hasToGoFirst.coffee' # put your files that must be loaded in first into the array | |
| 'src/notAsImportantButNeedsToGoBeforeTheRest.coffee' | |
| ] |