Skip to content

Instantly share code, notes, and snippets.

View nikku-x's full-sized avatar
💭
(ಥ﹏ಥ)

nikku nikku-x

💭
(ಥ﹏ಥ)
View GitHub Profile
// ==UserScript==
// @name Twitch Chat Pronouns
// @author emmyposs
// @version 1.0.0
// @license Unlicense
// @namespace mariobluegloves.info
// @description Userscript re-implementation of the Twitch Chat Pronouns plugin
//
// @match https://www.twitch.tv/*
// @match https://dashboard.twitch.tv/u/*/stream-manager
@nikku-x
nikku-x / fixlocale.sh
Created January 26, 2022 02:03 — forked from ChrisTitusTech/fixlocale.sh
Fix Locales in any distro
#!/bin/bash
echo "LC_ALL=en_US.UTF-8" | sudo tee -a /etc/environment
echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
echo "LANG=en_US.UTF-8" | sudo tee -a /etc/locale.conf
sudo locale-gen en_US.UTF-8