diff --git a/bin/now-alias b/bin/now-alias index 014dd81..8562f90 100755 --- a/bin/now-alias +++ b/bin/now-alias @@ -141,7 +141,7 @@ async function run (token) { _url, time ]; - }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(3) }); + }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) }); if (text) console.log('\n' + text + '\n'); break; diff --git a/bin/now-domains b/bin/now-domains index da34ea8..02196d1 100755 --- a/bin/now-domains +++ b/bin/now-domains @@ -135,7 +135,7 @@ async function run (token) { url, time ]; - }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(3) }); + }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) }); if (out) console.log('\n' + out + '\n'); break; diff --git a/bin/now-secrets b/bin/now-secrets index f2dedb9..c5fc6c7 100755 --- a/bin/now-secrets +++ b/bin/now-secrets @@ -118,7 +118,7 @@ async function run (token) { chalk.bold(secret.name), chalk.gray(ms(cur - new Date(secret.created)) + ' ago') ]; - }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(3) }); + }), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) }); if (out) console.log('\n' + out + '\n'); return secrets.close(); }