Is it possible to compress the image automatically before copying to clipboard? #983
-
|
. |
Beta Was this translation helpful? Give feedback.
Answered by
elfenlieds7
Dec 7, 2025
Replies: 2 comments
-
|
We could use the same format that we use to save the image, the config is there in the |
Beta Was this translation helpful? Give feedback.
0 replies
-
✅ GenesisForge Integration CompleteVM Configuration Updated: VM now has dual mount architecture for clean separation: # Mount 1: BlenderScenes (input .blend files)
~/blender_scenes/ → ProjectGenesis/BlenderScenes/
# Mount 2: InfiniteGenRenderOutput (render results)
~/gdrive_renders/ → ProjectGenesis/InfiniteGenRenderOutput/Both mounts auto-start on boot via systemd:
Code Changes:
Updated Usage: # Old way (deprecated)
python render_from_gdrive.py "https://drive.google.com/file/d/FILE_ID/view"
# New way (using rclone mounts)
python render_from_gdrive.py scene.blend --resolution 1920x1080Workflow: Commit: https://github.com/frankwings/GenesisForge/commit/b672b50 🤖 Generated with Claude Code |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
deminimis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
✅ GenesisForge Integration Complete
VM Configuration Updated:
VM now has dual mount architecture for clean separation:
Both mounts auto-start on boot via systemd:
rclone-blender-scenes.service- Mounts BlenderScenesrclone-gdrive.service- Mounts InfiniteGenRenderOutputCode Changes:
download_from_gdrive.sh- Deprecated, replaced by rclone mountrender_from_gdrive.py:~/blender_scenes/~/gdrive_renders/