Remember Remember

viernes, 7 de noviembre de 2008

I am too old for this shit

I mean, for me the biz was as clear as water. I was ready to stand for many things in order to be with her.

But she always misundestands me.

I am too old for this shit.

sábado, 1 de noviembre de 2008

Linux (UBUNTU) in an HP TC1100 tablet

I feel lazy today, so I am not going over all the configuration and such. I put all this together just as a reminder. If you need help with some specific problem, do not hesitate on contacting me.

NVidia

apt-get install envyng-gtk

Stylus
apt-get install wacom-tools

Section “InputDevice”
Driver “wacom”
Identifier “stylus”
Option “Device” “/dev/input/wacom”
Option “Type” “stylus”
Option “Button2″ “3″
Option “ForceDevice” “ISDV4″# Tablet PC ONLY
EndSection

Section “Device”
Identifier “Configured Video Device”
Driver “nvidia”
BoardName “vesa”
BusID “PCI:1:0:0″
Screen 0
Option “RandRRotation” “on” #Allows rotation
Option “NvAGP” “1″ #Helps to the suspend
EndSection

Section “ServerLayout”
Identifier “Default Layout”
Screen 0 “Default Screen” 0 0
InputDevice “Generic Keyboard” “CoreKeyboard”
InputDevice “Configured Mouse” “CorePointer”
InputDevice “Synaptics Touchpad”
InputDevice “stylus” “SendCoreEvents”
EndSection




map the rotate script
#!/bin/sh
if [ -n "$(xrandr | grep 768x1024)" ]; then
xrandr -o normal
xsetwacom set "stylus" Rotate NONE
else
xrandr -o left
xsetwacom set "stylus" Rotate CCW
fi