JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Add commandline args for term dimensions
[watch-my-terminal.git] / server.coffee
index 4f9dc14..f79fe33 100644 (file)
@@ -3,6 +3,11 @@ term_columns = 97
 term_lines = 63
 http_port = 2218
 
+if process.argv.length > 2
+       term_columns = parseInt process.argv[2]
+if process.argv.length > 3
+       term_lines = parseInt process.argv[3]
+
 
 handler = (req, res) ->
        reply_err = (req, res, msg) ->