Posts Tagged ‘keyboard’

Typing tilde on Netbeans 6.1 - annoying java bug

Friday, July 11th, 2008

It seems that is imposible to type the ˜ symbol (named also tilde,squiggle,twiddle,not,approx,wiggle,swung,dash,enyay,sqiggle) in Netbeans with a Swedish keyboard at least. It seems that it’s a long known java bug (bug 6353098, bug 6253172). At least I can use the Alt+126 code to type it.

Google Experimental Search

Thursday, May 17th, 2007
  • Keyboard shortcuts. Navigate though google search results (similar to Google Ctrl-Arrow Greasemonkey script).
  • Timeline and map views
  • Left-hand search navigation and Right-hand contextual search navigation

Google Experimental Search

via: Lifehacker

How to enable Windows key as Super key in linux

Tuesday, January 9th, 2007

I’ve you tried beryl or compiz you probably had notice that the Super key (the windows key, also known as Meta key) is used a lot. By default in my Fedora Core 6 installation the Windows key is not enabled, I had to add Option "XkbOptions" "altwin:super_win" to the InputDevice section of my /etc/X11/xorg.conf to activate it.

This is how the InputDevice section look like now:

...
Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "es"
        Option      "XkbOptions" "altwin:super_win"
EndSection
...

via Noiesmo’s GNU/Linux Site