Skip to content

Instantly share code, notes, and snippets.

View NinoScript's full-sized avatar
🎩
Working my way to FI/RE

Cristián Arenas Ulloa NinoScript

🎩
Working my way to FI/RE
View GitHub Profile
@NinoScript
NinoScript / recolor-fork.sh
Last active November 20, 2025 02:11
A method to get colorblind friendly version of Fork.app
#!/usr/bin/env bash
set -euo pipefail
# === CONFIGURATION ===
APP_SRC="/Applications/Fork.app"
APP_DEST="./Fork.app"
DYLIB_NAME="ColorTap.dylib"
COLOR_SRC="ColorTap.m"
INSERT_REPO="https://github.com/Tyilo/insert_dylib.git"
@objc protocol Refreshable
{
/// The refresh control
var refreshControl: UIRefreshControl? { get set }
/// The table view
var tableView: UITableView! { get set }
/// the function to call when the user pulls down to refresh
@objc func handleRefresh(_ sender: Any);