Skip to content

Instantly share code, notes, and snippets.

@rabitarochan
Last active May 22, 2019 00:24
Show Gist options
  • Save rabitarochan/e72a1361dd2f3281b7caf7d3414c4302 to your computer and use it in GitHub Desktop.
Save rabitarochan/e72a1361dd2f3281b7caf7d3414c4302 to your computer and use it in GitHub Desktop.
Manjaro Linux KDE (ArchLinux) on MacbookAir Setup

The computer has the ability to scan for Bluetooth, but can not pair because the package for Bluetooth is missing.

Install bluez and bluez-utils.

(Install)
# pacman -Syu bluez bluez-utils

(Enable bluetooth daemon)
# systemctl start bluetooth
# systemctl enable bluetootn

Links

The computer has the ability to scan for Bluetooth, but can not pair because the package for Bluetooth is missing.

Install bluez and bluez-utils.

(Install)
# pacman -Syu bluez bluez-utils

(Enable bluetooth daemon)
# systemctl start bluetooth
# systemctl enable bluetootn

Links

fn キーの挙動を逆にする

キーボードの fn キーは、デフォルトで Mac の機能 (ディスプレイの輝度や音量など) が割り当てられている。 そのため、通常の F として使う場合は fn キーと組み合わせる必要がある。

個人的には不便なため、挙動を逆にする。

一度のみ適用する

# echo 2 > /sys/module/hid_apple/parameters/fnmode

永続的に適用する

上記の手順では再起動時に元に戻ってしまうため、永続化するためには /etc/modprobe.d/hid_apple.conf ファイルに以下の行を追加する。 (私の環境では、上記ファイルが存在しなかったため新規作成した。)

options hid_apple fnmode=2

Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment