Kanały:
Wpisy
Komentarze

Posty oznaczone jako ‘firefox’

Firefox poprawianie

W poprzednim wpisie była mowa o spójności zakładek. Teraz trochę poprawię firefoxa do moich potrzeb.
Zakładki firefoxa (karty) na dole.
w ~/.mozilla/firefox/firefox_profile/chrom/userChrome.css
/* Display the tabbar at the bottom */
#content > tabbox { -moz-box-direction: reverse; }
/* http://lifehacker.com/software/ask-the-readers/best-firefox-userchromecss-tweaks-301520.php#c2443865 */
/* Merge Firefox Reload/Stop buttons a la Safari.
Stop button must be placed before Reload button */
#stop-button[disabled] { display: none;}
#stop-button:not([disabled]) + [...]

Przeczytaj cały Post »

Gnome-terminal i predefiniowane zakładki

http://blog.tupleshop.com/2007/7/22/pimp-my-iterm dla iTerm.
A tak dla gnome-terminal (w komentarzu)

!/bin/bashif [[ $# == 0 ]]; then PROJECT_DIR=$PWD elif [[ $# == 1 && -d ”$1” ]]; then PROJECT_DIR=”$@” else print “usage: iterm.sh [rails project directory]” return 1 ficd $PROJECT_DIRgvim

gnome-terminal \ —tab -t “app” \ —tab -t “server” -e “sh -x -c ’./script/server’” \ —tab -t “console” -e [...]

Przeczytaj cały Post »