Created
December 11, 2024 18:04
-
-
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
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 | |
| # 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