hello everyone, 
is there anyway that i can auto lock/unlock your mac if you are around or not through a script.
knock to unlock did not fulfill my requirement, i want to automatically unlock my laptop if i am around and lock it when i move away.
through bluetooth it worked perfectly with locking/sleeping the laptop but i am facing difficulties to unlock when it wakes up.
application used: promixity
codes-
to lock:
	
		
to unlock:
	
		
unlock does not always succeed, any thoughts?
	
		
			
		
		
	
				
			is there anyway that i can auto lock/unlock your mac if you are around or not through a script.
knock to unlock did not fulfill my requirement, i want to automatically unlock my laptop if i am around and lock it when i move away.
through bluetooth it worked perfectly with locking/sleeping the laptop but i am facing difficulties to unlock when it wakes up.
application used: promixity
codes-
to lock:
		Code:
	
	tell application "Finder"
	sleep
end tellto unlock:
		Code:
	
	tell application "Finder"
	launch
	tell application "System Events"
		tell application "System Events" to keystroke "PWD"
		tell application "System Events" to keystroke return
	end tell
end tell 
 
		