This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Fixes compilation issues derived from armv7 -> armv7s/arm64 from iOS 7 to iOS 8 | |
| # I never fully understood what the reason was for executables just randomly breaking | |
| # But this will fix it | |
| if [ "$1" = "FIXALL" ]; then | |
| echo "[+] About to run ASM replacement on ALL files in /usr/sbin, /usr/bin, and /usr/local/bin." | |
| echo "[!] WARNING This may break things. HIT CTRL+C RIGHT NOW TO STOP. Otherwise hit enter. BACKUP YOUR DEVICE." | |
| read WARNING | |
| for i in `ls /usr/sbin`; do "$0" "/usr/sbin/$i"; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Script for shutdown the mac if no user activity for specified time | |
| cd ~/Desktop | |
| # REQUIRED to run properly as a CRON job | |
| export PATH="/usr/bin:/usr/local/sbin:/usr/local/share:/usr/local/bin:/usr/bin:/bin:/usr/sbin" | |
| # Run every 5 minutes (every 5 minutes it checks to see if 30 minutes of nothing have gone by) | |
| # env EDITOR=nano crontab -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // FalconScript - DISCORD FONTS | |
| // These are just whatever. Pretty funny though | |
| // Open Chrome Console (CTRL+Shift+i), then paste entire script and hit enter. | |
| // Afterwards, type messages into a textbox. Hit the \ or | key to convert it to the new font! | |
| let FONTS = { | |
| "LIT": { SPACE_REPLACEMENT: '🔥', ALTERNATE_BOLD: true, BLACKLIGHTING: true }, | |
| "FLASHY_WORDS": { SPACE_REPLACEMENT: '\\✨', ALTERNATE_BOLD: true, BLACKLIGHTING: false, } | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo ' | |
| ### ### | |
| ##### Melee screen resolution optimizer ##### falconscript | |
| ### ### | |
| ' | |
| ## How to use: |