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/bash | |
set -oue pipefail | |
INFO='\033[0;36m' # Cyan for general information | |
SUCCESS='\033[0;32m' # Green for success messages | |
WARN='\033[0;33m' # Yellow for warnings | |
ERROR='\033[0;31m' # Red for errors | |
NC='\033[0m' # No Color | |
echo "This script will help you set up 1Password in a Flatpak browser." |