👩💻 Join our community of thousands of amazing developers!
NOTE: Environment Ubuntu 20.04 Dependencies Xwinwrap: sudo apt-get install xorg-dev build-essential libx11-dev x11proto-xext-dev libxrender-dev libxext-dev git clone https://github.com/ujjwal96/xwinwrap.git cd xwinwrap make sudo make install make clean Gifsicle: sudo apt install gifsicle The helper script A helper script to setup animated .gif in dual monitors. #!/bin/bash # Uses xwinwrap to display given animated .gif in dual monitors. if [ $# -ne 1 ]; then echo 1>&2 Usage: $0 image.gif exit 1 ...