このブログはURLが変更になりました

新しいブログはこちら→ https://matsuu.hatenablog.com/

Let's note CF-Y7でのxorg.conf

trombik氏から提出要請があったので、CF-Y7で使用している/etc/X11/xorg.confを以下に張り付ける。

設定ポリシーは、

  • 英語配列(何も設定せず)
  • Caps LockをCtrlとして使用
  • タッチパッドでCircularScrollingに対応させる
  • 横スクロールホイールをoff(Firefoxの挙動対策)
  • Composite対応
  • 東雲フォントとefont-unicodeフォントを追加。
  • Type1とTrueTypeはXlib経由では使用しない。

横スクロールホイールのFirefoxでの挙動はFirefox側で設定変更できるが、どうせ横スクロールは使わないだろうからoffに。

Intel965GMのTVout機能をDisableにすると、Xrandrが使えなくなる。Disableではなく、Ignoreとすれば、TVをoffにしつつXrandrを使えますよ。

TrueTypeは今やXft経由が主流だから、Xlibで対応する必要もないだろう。

Section "ServerLayout"
	Identifier  "X.org Configured"
	InputDevice "Keyboard0" "CoreKeyboard"
	InputDevice "TouchPad" "CorePointer"
	Screen      "Screen0"
EndSection

Section "Files"
	FontPath "/usr/share/fonts/misc/"
	FontPath "/usr/share/fonts/100dpi/"
	FontPath "/usr/share/fonts/75dpi/"
	FontPath "/usr/share/fonts/efont-unicode/"
EndSection

Section "Module"
	Load "GLcore"
	Load "dbe"
	Load "xtrap"
	Load "extmod"
	Load "glx"
	Load "record"
	Load "dri"
EndSection

Section "InputDevice"
	Identifier "Keyboard0"
	Driver     "kbd"
	Option     "XkbOptions" "ctrl:nocaps"
EndSection

Section "InputDevice"
	Identifier "TouchPad"
	Driver     "synaptics"
	Option     "Device" "/dev/input/mice"
	Option     "SHMConfig"
	Option     "NoVertEdgeScroll"
	Option     "NoHorizEdgeScroll"
	Option     "CircularScrolling"
	Option     "CircScrollTrigger" "3"
	Option     "CircularPad"
EndSection

Section "Device"
	Identifier "Card0"
	Driver     "intel"
	VendorName "Intel Corporation"
	BoardName  "Mobile Integrated Graphics Controller"
	BusID      "PCI:0:2:0"
	Option     "XAANoOffscreenPixmaps"
	Option     "monitor-TV" "TV"
EndSection

Section "Monitor"
	Identifier "Monitor0"
EndSection

Section "Monitor"
	Identifier "TV"
	Option     "Ignore"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
EndSection

Section "DRI"
	Mode  0666
EndSection

Section "Extensions"
	Option "Composite"
EndSection

2007/10/22追記:設定が美しくないのでxorg.confを見直して書き換えた(特にタッチパッド周り)。
2007/10/23追記:再修正