Skip to content

Instantly share code, notes, and snippets.

View ubmit's full-sized avatar

Guilherme de Andrade ubmit

View GitHub Profile
@ubmit
ubmit / convert-mov-to-gif.sh
Last active November 19, 2022 11:38
🎥 convert a .mov file to .gif
#!/bin/bash
ffmpeg -i input.mov -s 600x400 -pix_fmt rgb8 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > output.gif
@ubmit
ubmit / fix-cedilla.sh
Last active February 1, 2022 16:24
Ç fix cedilla for ubuntu based distros
#!/bin/bash
echo -e "GTK_IM_MODULE=cedilla\nQT_IM_MODULE=cedilla" >> /etc/environment
# restart your system