macOS tools moving to my git

This commit is contained in:
2026-05-10 12:53:30 -07:00
parent 61c0d4b5f1
commit 83156ea9e8
101 changed files with 3011 additions and 0 deletions

25
test Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
export PATH=$PATH:/usr/bin/local
cname=`scutil --get ComputerName`
echo ""
echo "Script:"
echo "presleep_quitapps"
echo "------------------------------------------------------------------------"
echo "Machine:" $cname
echo `date`
echo ""
# machine specific: Angus && Petula, turn off HomeKit stuff
if [[ $cname = "Angus" || $cname = "Petula" ]];
then
echo "** Machine Specific: $cname"
echo $'\t' "this works test"
fi
echo "------------------------------------------------------------------------"
echo `date`