One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <array> | |
| <dict> | |
| <key>phrase</key> | |
| <string>👎</string> | |
| <key>shortcut</key> | |
| <string>:-1:</string> | |
| </dict> |
I hereby claim:
To claim this, I am signing this object:
| <table | |
| cellpadding="0" | |
| cellspacing="0" | |
| class="table__StyledTable-sc-1avdl6r-0 kAbRZI" | |
| style=" | |
| vertical-align: -webkit-baseline-middle; | |
| font-size: small; | |
| font-family: Arial; | |
| " | |
| > |
| #!/bin/bash | |
| # Exit on error and uninitialized variables | |
| set -euo pipefail | |
| # Function to check if a command exists and instruct on installation if it doesn't | |
| command_exists() { | |
| if ! command -v "$1" >/dev/null 2>&1; then | |
| echo "Error: $1 is not installed. Please install it to proceed." | |
| exit 1 |