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
Run Python GUI in codespaces: https://www.freecodecamp.org/news/run-python-gui-in-github-codespaces/ | |
Bashrc Customisations | |
```PS1="\u@\h @ \t > " | |
alias c="clear"; | |
alias cc="clear; history -c" | |
alias p="python3 game.py" | |
alias getsize='echo -e "Codespace size: $(du -sh ~ | cut -f1) \nRepository Size: $(du -sh .git | cut -f1)"' | |
alias chelp='echo c, cc, p, getsize' |