A prettier Terminal in OS-X Part 3 (urxvt and screen)

  • February 21, 2009
Table of Contents

I was a bit annoyed of having to set TERM=xterm-256color. A more or less proper solution can be found on the rxvt-unicode ml from John Eikenberry.

cd ~
infocmp -L rxvt-unicode > rxvt-unicode.terminfo
sed -i '' 's/#256/#32767/' rxvt-unicode.terminfo
sed -i '' 's/#88/#256/' rxvt-unicode.terminfo
if [ ! -e .terminfo ]; then
mkdir .terminfo
fi
tic -o .terminfo/ rxvt-unicode.terminfo
rm rxvt-unicode.terminfo

I’ve also largely assimilated Bart’s configs. You can find them and the screenrc here .

hf

comments powered by Disqus

Related Posts

gentoo osx

Update: I also forgot to run the emerge -u world after the bootstrap. So you might want to do that yourself.

Read More

A critical look at Atom.io

I’m currently sitting at my Macbook Air 2013 writing this, which supposedly has a Haswell i7 ultramobile inside. According to my standards that’s a pretty decent amount of computing power.

Read More

Fixing the hard lockup caused by bluetooth in linux during sleep

I basically stopped using the bluetooth subsystem on my machine for a while, since it would lockup my system during sleep. Today I decided to investigate a little, here’s what I found out:

Read More