Added python project; fixed spelling of folder

This commit is contained in:
2023-09-30 16:09:14 -05:00
parent 1f23cb73d1
commit 6bf66c5916
1075 changed files with 2165 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
function main() {
jar cvfm GrabScreen.jar manifest.txt com/itdominator/grabscreen/*.class com/itdominator/grabscreen/resources
chmod +x GrabScreen.jar
mv GrabScreen.jar bin/
}
main;