Skip to content

Instantly share code, notes, and snippets.

@gabriel-batistuta
Created December 11, 2024 18:04
Show Gist options
  • Select an option

  • Save gabriel-batistuta/35a6a44fca412101c65537cdc69e6d18 to your computer and use it in GitHub Desktop.

Select an option

Save gabriel-batistuta/35a6a44fca412101c65537cdc69e6d18 to your computer and use it in GitHub Desktop.
This code get the actual day and check if its thursday is is, open the default browser in epic games to user reclaim the gift game
#!/bin/bash
# Check if it's Thursday
# echo "$(date +%u)" check today's date
if [ "$(date +%u)" -eq 4 ]; then
# Open the default browser in epic games
echo 'Thursday is the day to catch the game, damn it!!!-------------->'
xdg-open "https://store.epicgames.com/" &
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment