summaryrefslogtreecommitdiff
path: root/client.js
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-08-29 11:16:50 +0200
committertomsmeding <hallo@tomsmeding.nl>2015-08-29 11:16:50 +0200
commit5a9bb42ee6cb7d46cbd9c84ae24f75e05392d0f0 (patch)
treeca8531abc26a8c1e5518c49db691c1c08f7bfd3c /client.js
parentaba1fbae35b4e645bb296f6b6205b4cfb623835e (diff)
Clipboard and hostname in argument
Diffstat (limited to 'client.js')
-rwxr-xr-xclient.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/client.js b/client.js
index 00d4abb..ef1812e 100755
--- a/client.js
+++ b/client.js
@@ -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){