This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env bash | |
# File: /home/bjoern/.local/bin/tuxedo-profile | |
# Check if jq is installed | |
if ! command -v jq &> /dev/null; then | |
echo "Error: jq is required but not installed. Please install it first." | |
echo "You can install it with: sudo apt install jq" | |
exit 1 | |
fi |