Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
echo "=== workflow/default files ==="
find /home/fabian/ComfyUI -maxdepth 3 \( -name "*workflow*" -o -name "*default*" \) 2>/dev/null | grep -v __pycache__ | grep -v node_modules | grep -v ".pyc" | head -30
echo "=== user dir ==="
ls -la /home/fabian/ComfyUI/user/ 2>/dev/null
echo "=== user files ==="
find /home/fabian/ComfyUI/user -type f 2>/dev/null | head -30
echo "=== web json files ==="
find /home/fabian/ComfyUI/web -maxdepth 3 -type f -name "*.json" 2>/dev/null | head -10
echo "=== comfy settings ==="
cat /home/fabian/ComfyUI/user/default/comfy.settings.json 2>/dev/null | head -30