2011-09-01から1ヶ月間の記事一覧

I've done Fedora 16 Beta RC2 LXDE spin testing.

That result is here. I would say it's works fine for me except "QA:Testcase audio basic" but lxmusic is an alternative choice. Talking about doing Desktop test cases, "QA:Testcase_desktop_menus" takes long time for me. Of course it depends…

Misc memo. disable/enable touchpad via xinput, sent a patch to rhbz 732182.

This is a simple script to Disable/Enable touchpad from terminal via xinput. #!/bin/bash val=0 if [ "$#" = "1" ]; then val=$1 fi touchpad_device="FSPPS/2 Sentelic FingerSensingPad" device_num=`xinput list | grep "$touchpad_device" | cut -d…

I use xbacklight to change brightness. Although, I thought it would be fun to write an applet to change brightness.

I wrote it and works fine for me. At first, "./autogen.sh -> ./configure -> make -> make install" hasn't worked fine yet so you need to install manually :( I'll fix it. Anyway, it requires lxpanel and libXrandr development libraries. If yo…