- Download box86, wine x86, and winetricks to run WeChat(If using Twister OS, skip these steps) Run these commands in terminal:
sudo apt-get install cmake -y
cd ~/Downloads
git clone https://github.com/ptitSeb/box86
sudo apt-get install cmake -y
cd ~/Downloads
git clone https://github.com/ptitSeb/box86
#!/bin/sh -e | |
#determine if host system is 64 bit arm64 or 32 bit armhf | |
if [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 64)" ];then | |
MACHINE='aarch64' | |
elif [ ! -z "$(file "$(readlink -f "/sbin/init")" | grep 32)" ];then | |
MACHINE='armv7l' | |
else | |
echo "Failed to detect OS CPU architecture! Something is very wrong." | |
fi |
uup_download_linux.sh
, then run it. If it says it needs apt packages then run sudo apt-get install aria2 cabextract wimtools chntpw genisoimage
#!/bin/bash | |
function error { | |
echo -e "\e[91m$1\e[39m" | |
exit 1 | |
} | |
while true;do | |
#exit if multiple scripts running |
Installs https://github.com/dbrgn/tealdeer, the super fast implementation of TLDR.
To install:
wget https://gist.githubusercontent.com/mobilegmYT/c0500c6b195bcb875dbf23c9790b3b81/raw/751f10f99900bfa472ebf05889bc6d4a2217e69f/install.sh
chmod +x install.sh
./install.sh
rm install.sh
from .connection import Connection,RequestError | |
from .vec3 import Vec3 | |
from .event import BlockEvent,ChatEvent | |
from .block import Block | |
import math | |
from os import environ | |
from .util import flatten,floorFlatten | |
from . import security | |
""" Minecraft PI low level api v0.1_1 |