Created
January 12, 2025 23:40
-
-
Save andrewvmail/d98f502c8a3b057d76076842bfc2afa0 to your computer and use it in GitHub Desktop.
for ulauncher open multiple ai
This file contains 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 | |
# Check if a query is provided | |
if [ -z "$1" ]; then | |
echo "Error: No query provided." | |
exit 1 | |
fi | |
# Encode the query for URLs | |
QUERY=$(echo "$1" | sed 's/ /%20/g') | |
# Define the three websites with the query | |
URL1="https://chatgpt.com/?q=${QUERY}" # ChatGPT | |
URL2="https://claude.ai/new?q=${QUERY}" # Claude (Update to an actual Claude URL if one exists) | |
# URL3="https://deepseek.io/?q=${QUERY}" # DeepSeek | |
# Open the three websites in the default browser | |
xdg-open "$URL1" & | |
xdg-open "$URL2" & | |
xdg-open "$URL3" & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment