13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f /post-update-done ]; then
|
|
steamos-readonly disable
|
|
pacman-key --init
|
|
pacman-key --populate archlinux
|
|
pacman -S --noconfirm glibc
|
|
sed -i 's/#\(ja_JP.UTF-8.*\)/\1/' /etc/locale.gen
|
|
locale-gen
|
|
touch /post-update-done
|
|
steamos-readonly enable
|
|
fi
|