diff options
Diffstat (limited to 'client.js')
-rwxr-xr-x | client.js | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -5,9 +5,11 @@ var fs=require("fs"), http=require("http"), crypto=require("crypto"), dialog=require("dialog"), - kbd=require("kbd"); + kbd=require("kbd"), + toClipboard=require("to-clipboard"); -var HOSTNAME="localhost",HTTPPORT=42420; +var HOSTNAME=process.argv[2]||"tomsmeding.nl",HTTPPORT=42420; +console.log("Using server "+HOSTNAME); var userid="0",password="-"; @@ -150,7 +152,8 @@ function sendfile(fname,retries){ } console.log("Successful upload"); fs.unlink(fname); //not sync, take your time - dialog.info(body); + toClipboard.sync(body.trim()); + dialog.info(body+"\n(Copied to clipboard.)"); }); }); req.on("error",function(err){ |