Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/locale_helpers.py
blob: 523a23d563ad558e845dabf03e85d3955ca9a438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os

from .exceptions import *
# from .general import sys_command

def list_keyboard_languages(layout='qwerty'):
	locale_dir = '/usr/share/kbd/keymaps/'

	if not os.path.isdir(locale_dir):
		raise RequirementError(f'Directory containing locales does not exist: {locale_dir}')

	for root, folders, files in os.walk(locale_dir):
		# Since qwerty is under /i386/ but other layouts are
		# in different spots, we'll need to filter the last foldername
		# of the path to verify against the desired layout.
		if os.path.basename(root) != layout:
			continue

		for file in files:
			if os.path.splitext(file)[1] == '.gz':
				yield file.strip('.gz').strip('.map')

def search_keyboard_layout(filter, layout='qwerty'):
	for language in list_keyboard_languages(layout):
		if filter.lower() in language.lower():
			yield language

def set_keyboard_language(locale):
	return os.system(f'loadkeys {locale}') == 0