From 88717f745b25529cad98d8eff87e7c8b553e7ee8 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 16 Jul 2026 20:07:59 -0700 Subject: [PATCH] Add a playbook but do not call it yet and comment its contents for now. --- tasks/general/settings/keyboard.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tasks/general/settings/keyboard.yml diff --git a/tasks/general/settings/keyboard.yml b/tasks/general/settings/keyboard.yml new file mode 100644 index 0000000..1996488 --- /dev/null +++ b/tasks/general/settings/keyboard.yml @@ -0,0 +1,18 @@ +--- +# 20260716 - Hyperling +# Ensure the correct International AltGr keyboard setting is always chosen. + +# Is this really needed, or is it an `st` issue with the NovaCustom keyboard? + +#- name: General | Settings | Keyboard | Default Config +# lineinfile: +# path: "/etc/default/keyboard" +# regexp: '{{ item.key }}' +# line: '{{ item.value }}' +# state: present +# create: yes +# backup: yes +# loop: +# - { "key": '^[\#]?XKBMODEL', "value": 'XKBMODEL="pc105"'} +# - { "key": '^[\#]?XKBLAYOUT', "value": 'XKBLAYOUT="us"'} +# - { "key": '^[\#]?XKBVARIANT', "value": 'XKBVARIANT="altgr-intl"'}