Mar 8, 2020
#vlc
#video
#size
To prevent VLC from resizing the window every time you open a new video:
VLC -> Preferences -> Show All -> Interface/Main interface/macosx Uncheck the option Resize interface to the native video size
…
Jul 20, 2016
#video
#asciiname
#tmux
asciinema [as-kee-nuh-muh] is a free and open source solution for recording terminal sessions and sharing them on the web.
Install FreeBSD:
pkg install asciiname OS X:
brew update && brew install asciinema Recording tmux session Setup your tmux session create windows, splits, start processes in them:
tmux new -s name Detach (prefix+d) and start recording with:
asciinema rec -c "tmux attach -t name" /tmp/play.json When you’re finished, just detach the session again and play it with:
…