2011年5月8日 星期日

【Software】ubuntu tips (11.04)

  • 啟用Thinkpad滑鼠中鍵

    在軟體中心裏搜尋並安裝Pointing devices,打開設定,勾選Use wheel emulation,然後button設成2,按OK就行了。


    如果用起來覺得靈敏度不佳,可以用以下方法調整

    sudo gedit /etc/rc.local

    # 游標速度,可調整數值。大為快,小為幔
    echo -n 180 > /sys/devices/platform/i8042/serio1/speed
    # 靈敏度,最高應為 255
    echo -n 250 > /sys/devices/platform/i8042/serio1/sensitivity
    # 按小紅點為選取,1 為啟用,0 為關閉。
    echo -n 1 > /sys/devices/platform/i8042/serio1/press_to_select



  • 在桌面左邊的啟動列加入Firefox的profilemanager選項

    開啟terminal輸入

    sudo gedit /usr/share/applications/firefox.desktop

    修改下面那行,在後面加入SafeMode;ProfileManager;

    X-Ayatana-Desktop-Shortcuts=NewWindow;SafeMode;ProfileManager;

    並在最後加入下面選項

    [SafeMode Shortcut Group]
    Name=Open Firefox in safe mode
    Exec=firefox -safe-mode
    TargetEnvironment=Unity

    [ProfileManager Shortcut Group]
    Name=Firefox Profile Manager
    Exec=firefox -ProfileManager
    TargetEnvironment=Unity



  • to be continue...