Skip to content

Instantly share code, notes, and snippets.

@XargonWan
Last active May 4, 2024 20:25
Show Gist options
  • Save XargonWan/cc660daf92c224b7241cbf5a2bf12c47 to your computer and use it in GitHub Desktop.
Save XargonWan/cc660daf92c224b7241cbf5a2bf12c47 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 %command%` in the game's startup options on Steam to enable the locale."
Copy link

ghost commented Sep 8, 2023

I will definitely try this on the Steam Deck when I get one this fall.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment