Skip to content

Instantly share code, notes, and snippets.

@lialosiu
Forked from XargonWan/japanese_locale_enabler.sh
Last active October 1, 2023 13:38
Show Gist options
  • Save lialosiu/ce64ec656f2a42a198e8ee32785e00eb to your computer and use it in GitHub Desktop.
Save lialosiu/ce64ec656f2a42a198e8ee32785e00eb to your computer and use it in GitHub Desktop.
Enable Japanese locale on Steam Deck
#!/bin/bash
# This script is enabling (uncommenting) the Japanese locale and regenerates them
sudo steamos-readonly disable
sudo pacman-key --init
sudo pacman-key --populate archlinux
sudo pacman -S glibc
sudo sed -i "s%#ja_JP.UTF-8 UTF-8%ja_JP.UTF-8 UTF-8%" /etc/locale.gen
sudo locale-gen
sudo steamos-readonly enable
echo "Done! Be sure to put `LANG=ja_JP.UTF-8 LC_ALL=ja_JP.UTF-8 %command%` in the game's startup options on Steam to enable the locale."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment