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
| # Add to your zsh profile | |
| function devicepid() { | |
| if [ -z "$1" ]; then | |
| echo "Usage: devicepid <device-name> <search>" | |
| echo "Example: devicepid 'iPhone 15 Pro Max' SpringBoard" | |
| return 1 | |
| fi | |
| if [ -z "$2" ]; then |
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
| // | |
| // ContentView.Swift | |
| // KeyboardAttachedView | |
| // | |
| // Created by Gavin Nelson on 8/19/24. | |
| // | |
| import SwiftUI | |
| import UIKit |
OlderNewer