first commit

This commit is contained in:
Victor Bodinaud
2025-03-03 13:59:05 +01:00
commit 954e43aa2f
166 changed files with 15834 additions and 0 deletions

11
Library/asuser Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
version=$(sw_vers -productVersion)
if [[ ${version} = 1.0* || ${version} = 1.1.[012] ]]; then
user=root
else
user=mobile
fi
su -c "${user}" "$@"