Changes between Version 29 and Version 30 of jazz/UNR_Tuning


Ignore:
Timestamp:
Jun 1, 2011, 7:24:33 PM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/UNR_Tuning

    v29 v30  
    215215 * [參考] [http://xpapad.wordpress.com/2010/01/04/fully-disabling-touchpad-in-ubuntu-9-10-karmic-koala/ Fully disabling touchpad in Ubuntu 9.10 Karmic Koala]
    216216 * [參考] https://help.ubuntu.com/community/SynapticsTouchpad
     217{{{
     218~$ cat bin/stop-touchpad
     219#!/bin/bash
     220xinput set-int-prop "SynPS/2 Synaptics TouchPad" "Device Enabled" 8 0
     221}}}
    217222
    218223== Open Office , Office 2007 ==
     
    228233Usage: OdfConverter.exe /I PathOrFilename [/O PathOrFilename] [/<OPTIONS>]
    229234}}}
     235
     236== 檔案總管 ==
     237
     238 * [http://kevinick.com/blog/271.html 禁用 Ubuntu 最近打開文件功能] - 在 UNR 的「檔案」分頁會出現「最近的檔案」,久了覺得很大也不常查~為了保持某種彈性,就找一下怎麼清掉它囉~
     239{{{
     240~$ cat bin/clean-recent-files
     241#!/bin/bash
     242rm ~/.recently-used.xbel
     243}}}
     244}}}