2008-11-16
November 16, 2008
Take screenshots from the command line using ImageMagick:
import -window root screenshot.png
with a delay:
sleep 10; import -window root screenshot.png
The tufte-latex package contains a LaTeX document classes for creating handouts and books in the style of Edward Tufte.
- Bera Mono is a very nice monospace font included in TeX Live.
It’s installed by the Debian
texlive-fonts-extra
package.
One of the things that irked me about zsh was that
M-f
,M-b
and the like moved over slashes in paths. If I have a long path like/foo/bar/baz
I want to be able to pressM-DEL
to deletebaz
. By default zle, the zsh line editor, treats/foo/bar/baz
as a single word. To get it to treat/
as a word separator, place the following in your.zshrc
:# Don't treat slashes as part of words WORDCHARS="${WORDCHARS:s#/#}"