mirror of https://github.com/signalnine/lofi-imgen
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
334 B
Bash
8 lines
334 B
Bash
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
CONTAINER=$(/snap/bin/docker ps | grep miniconda | awk '{print $1}')
|
||
|
/snap/bin/docker exec -i $CONTAINER /sd/run.sh
|
||
|
IMAGE="$(ls /home/gabe/stable-diffusion/outputs/*.png -t | head -n1)"
|
||
|
/home/gabe/realesrgan/realesrgan-ncnn-vulkan -i "$IMAGE" -o /tmp/upscaled.png
|
||
|
python3 /home/gabe/lofi-imgen/tweet.py /tmp/upscaled.png
|