mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 15:42:14 +02:00
15 lines
443 B
YAML
15 lines
443 B
YAML
---
|
|
- name: Generate the US locale
|
|
community.general.locale_gen:
|
|
name: en_US.UTF-8
|
|
state: present
|
|
- name: Get the current keymap
|
|
shell: localectl status | grep "VC Keymap" | cut -d " " -f 7
|
|
register: localectl_keymap_status_command
|
|
ignore_errors: true
|
|
changed_when: false
|
|
- name: Set the keyboard keymap
|
|
become: true
|
|
command: "localectl set-keymap {{ locale }}"
|
|
when: 'localectl_keymap_status_command.stdout != locale'
|