Simple overview of use/purpose.
An in-depth paragraph about your project and overview of use.
| #!/bin/bash | |
| # Never heard of Tridctyl? Check this out https://addons.mozilla.org/en-US/firefox/addon/tridactyl-vim/ | |
| # This script can apply Tridactyl configuration in seconds: | |
| # Step 1: Modify key bindings and string value in the variable "data" as json format. | |
| # Step 2: ./update-tridactyl-conf.sh <path/storage-sync-v2.sqlite> | |
| if [[ -z $(command -v sqlite3) ]]; then | |
| echo "Command \"sqlite3\" does not exist!" | |
| echo "Downlad: https://sqlite.org/download.html" | |
| exit 1 |