How to generate a transparent webm file from a transparent GIF. This is easy.

How to create a transparent webm file using ffmpeg ffmpeg -i "transparent.gif" -c:v libvpx -qmin 0 -qmax 18 -crf 9 -b:v 1400K -quality good -cpu-used 0 -auto-alt-ref 0 -pix_fmt yuva420p -an -sn -metadata title="Transparent Webm." "Transparent.webm"ffmpeg -i "transparent.gif" -c:v libvpx -qmin 0 -qmax 18 -crf 9 -b:v 1400K -quality good -cpu-used 0 -auto-alt-ref 0 -pix_fmt … Read more

Very useful Linux desktop tips to make it very pretty and usable.

How to have a transparent rxvt terminal on a Linux desktop Transparent rxvt files. This is a very useful script to create a transparent rxvt terminal for a user who likes a pretty terminal to do day to day tasks in. #!/bin/bash # This is a shell script that provides a more attractive rxvt terminal. … Read more