You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
314 B
14 lines
314 B
#!/bin/bash
|
|
|
|
LANGUAGE_CODE=$1
|
|
COUNTRY_CODE=$2
|
|
LOCALE="${LANGUAGE_CODE}_${COUNTRY_CODE}.UTF-8"
|
|
ONLY_LXQT=$3
|
|
|
|
if [ -z "$ONLY_LXQT" ]; then
|
|
apt-get -y install language-pack-gnome-$LANGUAGE_CODE language-pack-kde-$LANGUAGE_CODE
|
|
fi
|
|
|
|
update-locale LANGUAGE=$LOCALE LANG=$LOCALE LC_ALL=$LOCALE
|
|
systemctl restart sddm
|