Skip to content

Instantly share code, notes, and snippets.

@andrewvmail
Created January 12, 2025 23:40
Show Gist options
  • Save andrewvmail/d98f502c8a3b057d76076842bfc2afa0 to your computer and use it in GitHub Desktop.
Save andrewvmail/d98f502c8a3b057d76076842bfc2afa0 to your computer and use it in GitHub Desktop.
for ulauncher open multiple ai
#!/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