Sunday, August 25, 2013
Markdown Editors
http://blog.pengyifan.com/best-markdown-editors-for-windows-linux-and-the-web/
Saturday, August 24, 2013
Friday, June 21, 2013
Install texlive 2012 on Ubuntu 12.04
sudo add-apt-repository ppa:texlive-backports/ppa
sudo apt-get update
sudo apt-get upgrade
Thursday, May 30, 2013
Saturday, May 11, 2013
Friday, May 10, 2013
How to change the title of an xterm
- ESC]0;stringBEL – Set icon name and window title to string
- ESC]1;stringBEL – Set icon name to string
- ESC]2;stringBEL – Set window title to string
echo -n "\033]0;${USER}@${HOST}\007"
For bash
case $TERM in
xterm*)
PS1="\[\033]0;\u@\h: \w\007\]bash\\$ "
;;
*)
PS1="bash\\$ "
;;
esac
For zsh
case $TERM in
xterm*)
precmd () {print -Pn "\e]0;%n@%m: %~\a"}
;;
esac
Tuesday, May 7, 2013
Subscribe to:
Posts (Atom)