Last active
January 25, 2024 09:40
-
-
Save luisadha/41731e8bc4bfa8e47284d27054f17e1c to your computer and use it in GitHub Desktop.
convert image to ascii on background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/data/data/com.termux/files/usr/bin/env zsh | |
# by luisadha | |
# | |
( while true; do | |
cols=$(tput cols) | |
if [ "$cols" == "141" ]; then | |
jp2a ~/downloads/aphrodite_by_juni_anker.jpg | |
sleep 1 | |
break | |
fi | |
done ) & |
Author
luisadha
commented
Jan 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment