tessen

default description
git clone https://git.awy.one/tessen.git
Log | Files | Refs | README | LICENSE

commit bcc0a07f18db22ca69792daed9cfa231172dac8d
parent ed9412a2f639014226b4513ca724a1662f70c93e
Author: Ayush Agarwal <ayush@fastmail.in>
Date:   Sun, 16 Jan 2022 18:55:52 +0530

style: use consistent case, fix grammar

Diffstat:
MREADME.md | 2+-
Mtessen | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -195,7 +195,7 @@ The reason why `tessen` offers flexibility between autotyping and copying data i may not always work accurately. There can be several reasons for this. One of the reasons when autotype doesn't work is when a web page doesn't follow the standard -expectation of having a username and password text field just after the other and links are insert +expectation of having a username and password text field one after the other and links are inserted between them. In such cases, autotyping can make a real mess. Autotyping also does not work on Chromium based browsers on Wayland when using diff --git a/tessen b/tessen @@ -242,7 +242,7 @@ key_open_url() { return 1 } else - _die "Failed to open the $tsn_urlkey" + _die "failed to open '$tsn_urlkey'" fi } @@ -416,7 +416,7 @@ validate_action() { copy) readonly tsn_action="copy" ;; both) readonly tsn_action="both" ;; "") readonly tsn_action="" ;; - *) _die "Please specify a valid action: autotype | copy | both" ;; + *) _die "please specify a valid action: autotype | copy | both" ;; esac } @@ -452,7 +452,7 @@ main() { ;; -a | --action) if [[ "$#" -lt 2 ]]; then - _die "Please specify a valid action: autotype | copy | both" + _die "please specify a valid action: autotype | copy | both" fi validate_action "$2" shift