Skip to content

Instantly share code, notes, and snippets.

View EnterTheVoid-x86's full-sized avatar
When there is no escape, just compile your way out.

etvx86 EnterTheVoid-x86

When there is no escape, just compile your way out.
View GitHub Profile
@EnterTheVoid-x86
EnterTheVoid-x86 / changesystemfont.md
Created May 24, 2023 01:27
Change system font on ChromeOS

WARNING! This will replace all use of Roboto in Chrome (and websites) with your choice of font.

Changing the system font of ChromeOS (Roboto)

-> = Replacing

Tested with Google Sans -> Roboto, example using Inter -> Roboto

1

@EnterTheVoid-x86
EnterTheVoid-x86 / wineinstaller.sh
Created July 18, 2022 22:26
Wine installer for ubuntu
#!/bin/bash
echo "Please select a number based on your Ubuntu version:"
echo "1. 22.04 Jammy"
echo "2. 21.10 Impish"
echo "3. 20.04 Focal"
echo "4. 18.04 Bionic"
read read
if [ $read == "1" ]; then
echo "Installing Wine 7.13 Staging for Ubuntu 22.04..."
sudo dpkg --add-architecture i386
@EnterTheVoid-x86
EnterTheVoid-x86 / index.html
Created January 9, 2022 23:23
Typewriter animation with JavaSript
<body>
<p class="content">
<span class="typewrite anim-typewrite js-typewrite"></span>
</p>
</body>