this is really just a small project that i might work on i bit in the future, but don't expect much from it. :)
Ezrashare21dev
11
Posts
7
Followers
6
Following
A member registered Jan 03, 2021 · View creator page →
Creator of
1KC is a fantasy c̶o̶n̶s̶o̶l̶e̶ machine built on top of a lot of things.
play as a more... pixelated version of snake. enjoy.
Strategy
Play in browser
Recent community posts
i made a script that unblocks unity apps on macs
if [ -d "$1" ]; then
file=$( ls $1/Contents/MacOS )
chmod +x "$1/Contents/MacOS/${file[0]}"
xattr -r -d com.apple.quarantine $1
elif [ "$1" = "about" ]; then
echo "a lazy tool made for unblocking unity apps on Macs."
echo "made by ezrashare21"
elif [ ! -d "$1" ]; then
echo "could not find file"
else
echo "error"
fi