コマンドラインから見るosx 10.10 yosemite システム環境設定の風景 -- 2 行目編

コンテンツは早々にできていたのですが,はてなブログにエントリーすると結果があまりにガッカリで...
こちら,markdown で書いているのですが,とりわけ code 周りがアレなようで「あぁ,やっぱタグ組まなくちゃだめか」と思った途端,ガッとダルくなってズルズルと.

ということで,2 段目.

今回は、見た感じ興味ないの多くて(笑、ほとんど省略が多いかも.

01. [CDとDVD] (省略)

--省略--

02. [ディスプレイ] (省略)

--省略--

03. [省エネルギー] (省略)

--省略--

04. [キーボード]

04.01 [キーボード] パネル

04.01.01 [キーボード] パネル > [キーのリピート]

defaults write -g KeyRepeat -int 2
  • UI アイテムと値の関係 ;
    • [切] = (補足参照)
    • [遅い] = 120
      :
    • [速い] = 2

補足あり、脚注へ.→*1

04.01.02 [キーボード] パネル > [リピート入力認識までの時間]

defaults write -g InitialKeyRepeat -int 15;
  • UI アイテムと値の関係 ;
    • [長い] = 120
      :
    • [短い] = 15

補足あり、脚注へ.→*2

04.01.03 [キーボード] パネル > [F1、F2 などのすべてのキーを標準のファンクションキーとして使用]

defaults write com.apple.keyboard.fnState -boolean true
  • UI アイテムと値の関係 ;
    • チェック "オン" (使用する) = true
    • チェック "オフ" (使用しない) = false

04.01.04 [キーボード] パネル > [環境光が暗い場合にキーボードの輝度を調整]

defaults write /Library/Preferences/com.apple.iokit.AmbientLightSensor.plist "Automatic Keyboard Enabled" -boolean true
  • UI アイテムと値の関係 ;
    • チェック "オン" (する) = true
    • チェック "オフ" (しない) = false

04.01.05 [キーボード] パネル > [発光した状態でコンピュータが待機する時間の設定]

defaults write /Library/Preferences/com.apple.iokit.AmbientLightSensor.plist -init 0
  • UI アイテムと値の関係 ;
    • [5 秒] = 5
      :
    • [5 分] = 300
    • [しない] = 0

04.01.06 [キーボード] パネル > [メニューバーにキーボードビューアと文字ビューアを表示]

if defaults read ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources >/dev/null 2>&1; then
    defaults delete ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources
fi
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{  "Bundle ID" = "com.apple.inputmethod.Kotoeri"; "Input Mode" = "com.apple.inputmethod.Japanese"; InputSourceKind = "Input Mode";}'
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{  "Bundle ID" = "com.apple.inputmethod.Kotoeri"; "Input Mode" = "com.apple.inputmethod.Roman";  InputSourceKind = "Input Mode";  }'
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{  "Bundle ID" = "com.apple.inputmethod.Kotoeri";  InputSourceKind = "Keyboard Input Method";  }'
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{  "Bundle ID" = "com.apple.50onPaletteIM";  InputSourceKind = "Non Keyboard Input Method";  }'

補足あり、脚注へ.→*3

04.02 [ユーザ辞書] パネル

--省略--

04.03 [ショートカット] パネル

04.03.01 [ショートカット] パネル > 上部ショートカットの設定 (省略)

--省略--

04.03.02 [ショートカット] パネル > [フルキーボードアクセス : Tab キーを押してウィンドウタイトルやダイアログ内の機能を移動する機能の適用範囲]

defaults write -g AppleKeyboardUIMode -int 3
  • UI アイテムと値の関係 ;
    • [テキストボックスとリストのみ] = 1
    • [すべてのコントロール] = 3

04.04 [入力ソース] パネル

ここでは入力ソースとして [日本語] を選択していることを前提に、その手続きについて触れていきます..

04.04.01 [入力ソース] パネル > 左ペイン,入力ソースのリスト (省略)

--省略--

補足あり、脚注へ.→*4

04.04.02 [入力ソース] パネル > [日本語] を選択,右ペイン

04.04.02.01 [入力ソース] パネル > [日本語] を選択,右ペイン [入力モード]

if defaults read ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources >/dev/null 2>&1; then
    defaults delete ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources
fi
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{"Bundle ID" = "com.apple.inputmethod.Kotoeri";"Input Mode" = "com.apple.inputmethod.Japanese"; InputSourceKind = "Input Mode";}'
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{"Bundle ID" = "com.apple.inputmethod.Kotoeri";"Input Mode" = "com.apple.inputmethod.Roman";InputSourceKind = "Input Mode";}'
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{"Bundle ID" = "com.apple.inputmethod.Kotoeri";InputSourceKind = "Keyboard Input Method";}'
defaults write ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources -array-add '{"Bundle ID" = "com.apple.50onPaletteIM";InputSourceKind = "Non Keyboard Input Method";}'

04.04.02.02 [入力ソース] パネル > [日本語] を選択,右ペイン [Caps lock の動作]

keyboardid=$(ioreg -n IOHIDKeyboard -r | grep -E 'VendorID"|ProductID' | awk '{ print $4 }' | paste -s -d'-\n' -)'-0'
defaults -currentHost delete -g com.apple.keyboard.modifiermapping.${keyboardid}
defaults -currentHost write -g com.apple.keyboard.modifiermapping.${keyboardid} -array-add '<dict><key>HIDKeyboardModifierMappingDst</key><integer>2</integer><key>HIDKeyboardModifierMappingSrc</key><integer>0</integer></dict>'

04.04.02.03 [入力ソース] パネル > [日本語] を選択,右ペイン [Shit キーの動作]

defaults write com.apple.inputmethod.Kotoeri JIMPrefShiftKeyActionKey -int 0
  • UI アイテムと値の関係 ;
    • [カタカナを入力] = 0
    • [英字モードに入る] = 1

04.04.02.04 [入力ソース] パネル > [日本語] を選択,右ペイン [入力方法]

defaults write com.apple.inputmethod.Kotoeri JIMPrefTypingMethodKey -int 0

04.04.02.05 [入力ソース] パネル > [日本語] を選択,右ペイン [Windows 風のキー操作]

defaults write com.apple.inputmethod.Kotoeri JIMPrefShiftKeyActionKey -boolean false
  • UI アイテムと値の関係 ;
    • "オン" = true
    • "オフ" = false

04.04.02.06.01 [入力ソース] パネル > [日本語] を選択,右ペイン [候補表示] > [フォント]

defaults write com.apple.inputmethod.Kotoeri -string "Ricty-Regular"

04.04.02.06.02 [入力ソース] パネル > [日本語] を選択,右ペイン [候補表示] > [フォントサイズ]

defaults write com.apple.inputmethod.Kotoeri JIMPrefCandidateWindowFontSizeKey -int 12

04.04.02.07 [入力ソース] パネル > [日本語] を選択,右ペイン [推測表示]

defaults write com.apple.inputmethod.Kotoeri JIMPrefPredictiveCandidateKey -boolean true
  • UI アイテムと値の関係 ;
    • "オン" = true
    • "オフ" = false

04.04.02.08 [入力ソース] パネル > [日本語] を選択,右ペイン [句読点で変換]

defaults write com.apple.inputmethod.Kotoeri JIMPrefConvertWithPunctuationKey -boolean false
  • UI アイテムと値の関係 ;
    • "オン" = true
    • "オフ" = false

04.04.02.09 [入力ソース] パネル > [日本語] を選択,右ペイン [英字のレイアウト]

defaults write com.apple.HIToolbox AppleCurrentKeyboardLayoutInputSourceID -string "com.apple.keylayout.US"
defaults write com.apple.inputmethod.Kotoeri JIMPrefRomajiKeyboardLayoutKey -string  "com.apple.keylayout.US"
  • UI アイテムと値の関係 ;

--省略--

04.04.02.10 [入力ソース] パネル > [日本語] を選択,右ペイン [句読点の種類]

defaults write com.apple.inputmethod.Kotoeri.plist JIMPrefPunctuationTypeKey -int 3
  • UI アイテムと値の関係 ;
    • [.と,] = 1
    • [.と、] = 2
    • [.と,] = 3

04.04.02.11 [入力ソース] パネル > [日本語] を選択,右ペイン ["/"キーで入力する文字]

defaults write com.apple.inputmethod.Kotoeri.plist JIMPrefCharacterForSlashKey -int 0
  • UI アイテムと値の関係 ;
    • [/ (スラッシュ)] = 0
    • [・(中黒)] = 1

04.04.02.12 [入力ソース] パネル > [日本語] を選択,右ペイン ["/"キーで入力する文字]

defaults write com.apple.inputmethod.Kotoeri.plist JIMPrefCharacterForYenKey -int 1
  • UI アイテムと値の関係 ;
    • ["\" (円記号)] = 0
    • ["\" (バックスラッシュ)] = 1

04.04.02.13 [入力ソース] パネル > [日本語] を選択,右ペイン [数字を全角入力]

defauls write com.apple.inputmethod.Kotoeri JIMPrefFullWidthNumeralCharactersKey -boolean false
  • UI アイテムと値の関係 ;
    • ["\" (円記号)] = false
    • ["\" (バックスラッシュ)] = true

04.04.02.14 [入力ソース] パネル > [日本語] を選択,右ペイン [追加辞書]

--省略--

04.04.02.15 [入力ソース] パネル > [日本語] を選択,右ペイン [変換辞書]

--省略--

04.04.03 [入力ソース] パネル > [メニューバーに入力メニューを表示]

defalts write com.apple.systemuiserver menuExtras -array "/System/Library/CoreServices/Menu Extras/TextInput.menu"
  • UI アイテムと値の関係
    • "オン" (表示);
      defalts write com.apple.systemuiserver menuExtras -array "/System/Library/CoreServices/Menu Extras/TextInput.menu"
      
    • "オフ" (非表示);
      defalts delete com.apple.systemuiserver menuExtras -array "/System/Library/CoreServices/Menu Extras/TextInput.menu"
      

04.04.04 [入力ソース] パネル > [書類ごとに入力ソースを自動的に切り替える]

if defaults read ~/Library/Preferences/com.apple.HIToolbox AppleEnabledInputSources >/dev/null 2>&1; then
    defaults delete ~/Library/Preferences/com.apple.HIToolbox AppleGlobalTextInputProperties
fi
  • UI アイテムと値の関係
    • "オン" (切り替える);
      defaults write com.apple.HIToolbox AppleGlobalTextInputProperties -dict TextInputGlobalPropertyPerContextInput true
      
    • "オフ" (切り替えない);
      defaults write com.apple.HIToolbox AppleGlobalTextInputProperties -dict TextInputGlobalPropertyPerContextInput false
      

05. [マウス]

05.01 [ポイントとクリック] パネル

05.01.01 [ポイントとクリック] パネル > [スクロールの方向: ナチュラル]

defaults write -g com.apple.swipescrolldirection -boolean false
  • UI アイテムと値の関係
    • "オン" = true
    • "オフ" = false

05.01.02 [ポイントとクリック] パネル > [副ボタンのクリック]

defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseButtonMode -string "TwoButton"
defaults write com.apple.driver.AppleBluetoothMultitouch.mouse "save.MouseButtonMode.v1" -int 1
  • UI アイテムと値の関係
    • "オン" (有効) > [右端をクリック]
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseButtonMode -string "TwoButton"
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse "save.MouseButtonMode.v1" -int 1
      
    • "オン" (有効) > [左端をクリック]
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseButtonMode -string "TwoButtonSwapped"
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse "save.MouseButtonMode.v1" -int 0
      
    • "オフ" (無効)
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseButtonMode -string "OneButton"
      

05.01.03 [ポイントとクリック] パネル > [スマートズーム]

defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseOneFingerDoubleTapGesture -int 1
  • UI アイテムと値の関係
    • "オン" (有効) = 1
    • "オフ" (無効) = 0

05.01.04 [ポイントとクリック] パネル > [軌跡の速さ]

defaults write -g com.apple.mouse.scaling -int 0.6875
  • UI アイテムと値の関係
    • [遅い] = 0
      :
    • [速い] = 3

05.02.01 [その他のジェスチャ] パネル > [ページ間をスワイプ]

defaults write -g AppleEnableMouseSwipeNavigateWithScrolls -boolean "false"
  • UI アイテムと値の関係
    • "オン" (有効) > [1 本指で左右にスクロール]
      defaults write -g AppleEnableMouseSwipeNavigateWithScrolls -boolean "true"
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerHorizSwipeGesture -int 0
      
    • "オン" (有効) > [2 本指で左右にスワイプ]
      defaults write -g AppleEnableMouseSwipeNavigateWithScrolls -boolean "false"
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerHorizSwipeGesture -int 1
      
    • "オン" (有効) > [フルスクリーンアプリケーション間をスワイプ]
      defaults write -g AppleEnableMouseSwipeNavigateWithScrolls -boolean "true"
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse  MouseTwoFingerHorizSwipeGesture -int 1
      
    • "オフ" (無効)
      defaults write -g AppleEnableMouseSwipeNavigateWithScrolls -boolean "false"
      

05.02.02 [その他のジェスチャ] パネル > [フルスクリーンアプリケーション間をスワイプ]

defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerHorizSwipeGesture -int 2
  • UI アイテムと値の関係
    • "オン" (有効)
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerHorizSwipeGesture -int 2
      
    • "オフ" (無効)
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerHorizSwipeGesture -int 0
      

05.02.03 [その他のジェスチャ] パネル > [Mission Control]

defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerDoubleTapGesture -int 0
  • UI アイテムと値の関係
    • "オン" (有効)
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerDoubleTapGesture -int 3
      
    • "オフ" (無効)
      defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseTwoFingerDoubleTapGesture -int 0
      

06. [トラックパッド]

06.01.01 [ポイントとクリック] パネル

06.01.01 [ポイントとクリック] パネル > [タップでクリック]

defaults write com.apple.AppleMultitouchTrackpad Clicking -int 0
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -int 0
  • UI アイテムと値の関係 ;
    • オン (クリック) = 0
    • オフ (タップでクリック) = 1

06.01.02 [ポイントとクリック] パネル > [副ボタンのクリック]

defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true
defaults -currentHost write -g com.apple.trackpad.trackpadCornerClickBehavior -int 1
defaults -currentHost write -g com.apple.trackpad.enableSecondaryClick -bool true
  • UI アイテムと値の関係 ;
    • "オフ" (副ボタン機能,無効)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadCornerSecondaryClick -int 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -boolean false
      
    • "オン" (副ボタン機能,有効) > [2 本指でクリック]
      defaults write com.apple.AppleMultitouchTrackpad TrackpadCornerSecondaryClick -int 0
      defaults write com.apple.AppleMultitouchTrackpad TrackpadRightClick -boolean true
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -boolean ture
      
    • "オン" (副ボタン機能,有効) > [右下隅をクリック]
      defaults write com.apple.AppleMultitouchTrackpad TrackpadCornerSecondaryClick -int 2
      defaults write com.apple.AppleMultitouchTrackpad TrackpadRightClick -boolean false
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -boolean false
      
    • "オン" (副ボタン機能,有効) > [左下隅をクリック]
      defaults write com.apple.AppleMultitouchTrackpad rackpadCornerSecondaryClick -int 1
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 1
      

06.01.03 [ポイントとクリック] パネル > [調べる]

defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerTapGesture -int 0
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerTapGesture -int 0
  • UI アイテムと値の関係 ;
    • "オン" (調べる機能、有効にする)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerTapGesture -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerTapGesture -int 2
      
    • "オフ" (調べる機能、無効にする)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerTapGesture -int 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerTapGesture -int 0
      

06.01.04 [ポイントとクリック] パネル > [3 本指のドラッグ]

defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -boolean false
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerHorizSwipeGesture -int 2
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerVertSwipeGesture -int 2
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -boolean false
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 2
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerVertSwipeGesture -int 2
  • UI アイテムと値の関係 ;
    • "オン" (調べる機能、有効にする)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -boolean true
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -boolean ture
      
    • "オフ" (調べる機能、無効にする)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -boolean false
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -boolean false
      

06.01.05 [ポイントとクリック] パネル > [軌跡の速さ]

defaults write -g com.apple.trackpad.scaling -float 0.6875;
  • UI アイテムと値の関係 ;
    • [遅い] = 0
      :
    • [速い] = 3.0

06.02.01 [スクロールとズーム] パネル

06.02.01 [スクロールとズーム] パネル > [スクロールの方向]

defaults write -g com.apple.trackpad.scaling -boolean false;
  • UI アイテムと値の関係 ;
    • "オン" (ナチュラル) = true
    • "オフ" (ナユラルではない) = false

06.02.02 [スクロールとズーム] パネル > [拡大/縮小]

defaults write com.apple.AppleMultitouchTrackpad TrackpadPinch -boolean true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadPinch -boolean true
  • UI アイテムと値の関係 ;
    • "オン" (有効) = いずれも true
    • "オフ" (無効) = いずれも false

06.02.03 [スクロールとズーム] パネル > [スマートズーム]

defaults write com.apple.AppleMultitouchTrackpad TrackpadTwoFingerDoubleTapGesture -boolean true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadTwoFingerDoubleTapGesture -boolean true
  • UI アイテムと値の関係 ;
    • "オン" (有効) = いずれも true
    • "オフ" (無効) = いずれも false

06.02.04 [スクロールとズーム] パネル > [回転]

defaults write com.apple.AppleMultitouchTrackpad TrackpadRotate -boolean false
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRotate -boolean false
  • UI アイテムと値の関係 ;
    • "オン" (有効) = いずれも true
    • "オフ" (無効) = いずれも false

06.03.01 [その他のジェスチャ] パネル

06.03.01 [その他のジェスチャ] パネル > [ページ間をスワイプ]

defaults write -g AppleEnableSwipeNavigateWithScrolls -boolean false
  • UI アイテムと値の関係 ;
    • "オフ" (無効)
      defaults write -g AppleEnableSwipeNavigateWithScrolls -boolean false
      
    • "オン" (有効) > [2 本指で左右にスクロール]
      defaults write -g AppleEnableSwipeNavigateWithScrolls -boolean true
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerHorizSwipeGesture -int 0
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerVertSwipeGesture -int 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerVertSwipeGesture -int 0
      
    • "オン" (有効) > [3本指でスワイプ]
      defaults write -g AppleEnableSwipeNavigateWithScrolls -boolean false
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerHorizSwipeGesture -int 1
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerVertSwipeGesture -int 1
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 1
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerVertSwipeGesture -int 1
      
    • "オン" (有効) > [2本指または3本指でスワイプ]
      defaults write -g AppleEnableSwipeNavigateWithScrolls -boolean true
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerHorizSwipeGesture -int 1
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerVertSwipeGesture -int 1
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 1
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerVertSwipeGesture -int 1
      

06.03.02 [その他のジェスチャ] パネル > [フルスクリーンアプリケーション間をスワイプ]

defaults write "com.apple.AppleMultitouchTrackpad" TrackpadFourFingerHorizSwipeGesture -int 0
defaults write "com.apple.driver.AppleBluetoothMultitouch.trackpad" TrackpadFourFingerHorizSwipeGesture -int 0
  • UI アイテムと値の関係 ;
    • "オフ"
      defaults write "com.apple.AppleMultitouchTrackpad" TrackpadFourFingerHorizSwipeGesture -int 0
      defaults write "com.apple.driver.AppleBluetoothMultitouch.trackpad" TrackpadFourFingerHorizSwipeGesture -int 0
      
    • "オン" > [4 本指で左右にスワイプ]
      defaults write "com.apple.AppleMultitouchTrackpad" TrackpadFourFingerHorizSwipeGesture -int 2
      defaults write "com.apple.driver.AppleBluetoothMultitouch.trackpad" TrackpadFourFingerHorizSwipeGesture -int 2
      
    • "オン" > [3 本指で左右にスワイプ]
      defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerHorizSwipeGesture -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 2
      

06.03.03 [その他のジェスチャ] パネル > [通知センター]

defaults write com.apple.AppleMultitouchTrackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 0
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 0
  • UI アイテムと値の関係 ;
    • "オフ"
      defaults write com.apple.AppleMultitouchTrackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 0
      
    • "オン"
      defaults write com.apple.AppleMultitouchTrackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 3
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadTwoFingerFromRightEdgeSwipeGesture -int 3
      

06.03.04 [その他のジェスチャ] パネル > [Mission Control]

defaults write com.apple.AppleMultitouchTrackpad TrackpadFourFingerVertSwipeGesture -int 0
defaults write com.apple.dock showMissionControlGestureEnabled -boolean false
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerVertSwipeGesture -int 0
  • UI アイテムと値の関係 ;
    • "オフ" (無効)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadFourFingerVertSwipeGesture -int 0
      defaults write com.apple.dock showMissionControlGestureEnabled -boolean false
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerVertSwipeGesture -int 0
      
    • "オン" (有効) > [3本指で上にスワイプ]
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.applemultitouchtrackpad  Trackpadthreefingervertswipegesture -int 2
      defaults write com.apple.dock  showMissionControlGestureEnabled -boolean true
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadThreeFingerVertSwipeGesture -int 2
      
    • "オン" (有効) > [4本指で上にスワイプ]
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadThreeFingerVertSwipeGesture -int 0
      defaults write com.apple.dock  showMissionControlGestureEnabled -boolean true
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadThreeFingerVertSwipeGesture -int 0
      

06.03.05 [その他のジェスチャ] パネル > [アプリケーション Expose]

defaults write com.apple.AppleMultitouchTrackpad  TrackpadFourFingerVertSwipeGesture -int 0
defaults write com.apple.AppleMultitouchTrackpad  TrackpadThreeFingerVertSwipeGesture -int 0
defaults write com.apple.dock  showAppExposeGestureEnabled -boolean false
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadFourFingerVertSwipeGesture -int 0
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadThreeFingerVertSwipeGesture -int 0
  • UI アイテムと値の関係 ;
    • "オフ" (無効)
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadFourFingerVertSwipeGesture -int 0
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadThreeFingerVertSwipeGesture -int 0
      defaults write com.apple.dock  showAppExposeGestureEnabled -boolean false
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadFourFingerVertSwipeGesture -int 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadThreeFingerVertSwipeGesture -int 0
      
    • "オン" (有効) > [3本指で下にスワイプ]
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadThreeFingerVertSwipeGesture -int 2
      defaults write com.apple.dock  showAppExposeGestureEnabled -boolean true
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad  TrackpadThreeFingerVertSwipeGesture -int 2
      
    • "オン" (有効) > [4本指で下にスワイプ]
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.AppleMultitouchTrackpad  TrackpadThreeFingerVertSwipeGesture -int 0
      defaults write com.apple.dock  showAppExposeGestureEnabled -boolean true
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerVertSwipeGesture -int 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerVertSwipeGesture -int 0
      

06.03.06 [その他のジェスチャ] パネル > [Launchpad]

defaults write com.apple.dock showLaunchpadGestureEnabled -boolean false
  • UI アイテムと値の関係 ;
    • "オン" (有効)
      defaults write com.apple.dock showLaunchpadGestureEnabled -boolean true
      
    • "オフ" (無効)
      defaults write com.apple.dock showLaunchpadGestureEnabled -boolean false
      

06.03.07 [その他のジェスチャ] パネル > [デスクトップを表示]

defaults write com.apple.AppleMultitouchTrackpad TrackpadFiveFingerPinchGesture = 2
defaults write com.apple.AppleMultitouchTrackpad TrackpadFourFingerPinchGesture = 2
defaults write com.apple.dock showDesktopGestureEnabled = 1
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFiveFingerPinchGesture = 2
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerPinchGesture = 2
  • UI アイテムと値の関係 ;
    • "オン" (有効)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadFiveFingerPinchGesture = 2
      defaults write com.apple.AppleMultitouchTrackpad TrackpadFourFingerPinchGesture = 2
      defaults write com.apple.dock showDesktopGestureEnabled = 1
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFiveFingerPinchGesture = 2
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerPinchGesture = 2
      
    • "オフ" (無効)
      defaults write com.apple.AppleMultitouchTrackpad TrackpadFiveFingerPinchGesture = 0
      defaults write com.apple.AppleMultitouchTrackpad TrackpadFourFingerPinchGesture = 0
      defaults write com.apple.dock showDesktopGestureEnabled = 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFiveFingerPinchGesture = 0
      defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadFourFingerPinchGesture = 0
      

06.04 [Bluetooth トラックパッドを設定] (省略)

--省略--

07. [プリンタとスキャナ] (省略)

--省略--

08. [サウンド] (省略)

--省略--

いいですかね...(笑.

と言うことでして,タダで使わせて頂いている身で大変厚かましい限りではございますが,はてなの皆さま,markdwon 記法を使用したケースでの,脚注 footnote における 引用(blockquote) > と,コード(code),これはインライン ` もブロック ``` いずれについても,フツーに html へ変換されるようして頂けたりしやしませんでしょうかね....

ま,そんなこと望むの自分くらいか(笑

はい,おしまい.

*1: 04.01.01 [キーボード] パネル > [キーのリピート] の補足 ;

  • InitialKeyRepeat_Level_Saved と言うキーも一緒に動く様なのですが、これは何でしょう? 【todo】
    InitialKeyRepeat_Level_Saved" = 3;

*2: 04.01.02 [キーボード] パネル > [リピート入力認識までの時間] の補足 ;

  • [切] の時、設定が変わるのは KeyRepeat キーではなく、cnitialKeyRepeat.;
    defaults write -g InitialKeyRepeat -int 300000
    
    対象のキーである KeyRepeat が、いわゆる "オフ" の状態になるのではないみたい.この仕様の意図は分かりません.
  • 逆に [切] ではない "オン" の状態になると、InitialKeyRepeat キーに 68 が設定され、;
    defaults write -g InitialKeyRepeat -int 68
    
    同時に、先述通りに KeyRepeat の値がセットされる.
  • この設定値、実際ここでは、0 にして作業しています.

*3: 04.01.06 [キーボード] パネル > [メニューバーにキーボードビューアと文字ビューアを表示] ;

  • この設定内容は後述 [入力ソース] パネルの [入力モード] (04.04.02) と全く同じ....同じ?

*4: 04.04.01 [入力ソース] パネル > 入力ソースのリスト の補足 ;

  • インストール時の、[キーボード入力環境を選択]のステップで、キーボード配列として日本語を選択しておくことが必要かもしれません.
    これは yosemite ではなく mavericks 時の経験なのですが、当環境はUSキーボードでして、だからとU.S.を選択すると日本語の入力環境、当時はことえり、が何か上手く制御できなかった経験があり、以来素直に日本語を選択するようにしています....と言う事で、yosemite 上では未検証ですが.