5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ChromiumOS M59以降でCaps LockをCtrlキーに変更

Last updated at Posted at 2017-09-04

方法

**一般的に、**JP106キーボードを使う時にはCaps LockキーをCtrlキーへリマップすると思いますが、Chromebook(ChromiumOS)で下記のように設定画面に表示されていない場合、

Screenshot 2017-09-03 at 20.19.34.png

  1. 「キーボード」あたりで右クリックして「検証」を選び、デベロッパッパーツールを起動
  2. 数行下の<settings-keyboard>というタグを探して右クリック、「Add Attribute」を選び、show-caps-lock_(最後のアンダーバーに注意) という属性を追加

Screenshot 2017-09-03 at 20.40.58.png
3. Caps Lockのリマップ設定が表示されました! :tada: 一時的な設定ではなくずっと使えます。

ink.png

M59以前はここを見て変更していましたが、設定画面がPolymerで一新されてからは同じ方法が使えませんでした。

settings/keyboard-overlay
    <template is="dom-if" if="[[showCapsLock_]]">
      <div class="settings-box" id="capsLockKey">
        <div class="start">CapsLock</div>
        <settings-dropdown-menu label="CapsLock" pref="{{prefs.settings.language.remap_caps_lock_key_to}}" menu-options="[[keyMapTargets_]]">
        </settings-dropdown-menu>
      </div>
    </template>

ただ、、、ソース上は設定が入っているみたいなので無事変更できました。

まとめ

Polymer を知っておくと便利ですよ!

以上

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?