Puppet Class: osx::keyboard::capslock_to_control
- Defined in:
- manifests/keyboard/capslock_to_control.pp
Overview
Public: Remaps capslock to control on attached keyboards.
Example
include osx::keyboard::capslock_to_control
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'manifests/keyboard/capslock_to_control.pp', line 7
class osx::keyboard::capslock_to_control {
# Remap capslock to control on all attached keyboards
$keyboard_ids = join([
'ioreg -n IOHIDKeyboard -r ',
'| grep -E \'VendorID"|ProductID\' ',
'| awk \'{ print $4 }\' | paste -s -d\'-\n\' -'])
$check = join([
'xargs -I{} sh -c \'defaults -currentHost read ',
'-g "com.apple.keyboard.modifiermapping.{}-0" ',
'| grep "Dst = 2" > /dev/null\''])
$remap = join([
'xargs -I{} defaults -currentHost write ',
'-g "com.apple.keyboard.modifiermapping.{}-0" ',
'-array "<dict><key>HIDKeyboardModifierMappingDst</key>',
'<integer>2</integer><key>HIDKeyboardModifierMappingSrc</key>',
'<integer>0</integer></dict>"'])
exec { 'Remap capslock to control on all keyboards':
command => "${keyboard_ids} | ${remap}",
unless => "${keyboard_ids} | ${check}"
}
}
|