Added images, added cpu monitor, and updated layout

This commit is contained in:
Maxim Stewart 2020-04-17 14:31:01 -05:00
parent db9b939b58
commit 3e204abe66
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
#!/bin/bash
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
find . -name "__pycache__" -exec rm -rf $1 {} \;
find . -name "*.pyc" -exec rm -rf $1 {} \;
}
main