Skip to content

Instantly share code, notes, and snippets.

@ZenithalHourlyRate
Last active October 12, 2020 13:09
Show Gist options
  • Save ZenithalHourlyRate/fe796cb96a9830d8f0eda03edd378cc7 to your computer and use it in GitHub Desktop.
Save ZenithalHourlyRate/fe796cb96a9830d8f0eda03edd378cc7 to your computer and use it in GitHub Desktop.
Random Locale For Every Command

Random Locale For Every Command

The locale for any command you typed would change, giving you a new experience on terminal.

The random locale is selected from the locales you enabled. See /etc/locale.gen for more information.

precmd() {
export LANG=`locale -a | grep utf8 | shuf | head -1`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment