Firstly, run lsusb and locate your phone. In my case, it was the highlighted line:
Bus 002 Device 002: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 002: ID 045e:0752 Microsoft Corp.
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 002: ID 045e:0039 Microsoft Corp. IntelliMouse Optical
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 006: ID 0bb4:0c02 High Tech Computer Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Copy everything from ID to the end of the line (i.e. "
ID 0bb4:0c02 High Tech Computer Corp.
") This will be the ID used to determine when your device is plugged in & unplugged.Paste this file into your /home/username/bin folder:
#!/bin/bash
#Replace with the ID of your USB device
id="ID 0bb4:0c02 High Tech Computer Corp." # Example: id="ID 05ac:1292 Apple, Inc"
#runs every 2 seconds
for ((i=0; i<=30; i++))
do
if [ -z "`lsusb | grep "$id"`" ]
then
echo "Device is NOT plugged in"
if [ -n "`DISPLAY=:0 gnome-screensaver-command --query | grep "is active"`" ]
then
if [ -e /tmp/autoUnlock.lock ]
then
#stop locking the screen
rm /tmp/autoUnlock.lock
fi
elif [ -e /tmp/autoUnlock.lock ]
then
DISPLAY=:0 notify-send -t 5000 –icon=dialog-info “Device Disconnected” “Bye!”
#lock the desktop
DISPLAY=:0 gnome-screensaver-command --lock
rm /tmp/autoUnlock.lock
fi
else
echo "Android IS plugged in"
if [ ! -e /tmp/autoUnlock.lock ]
then
DISPLAY=:0 gnome-screensaver-command --deactivate
DISPLAY=:0 notify-send -t 5000 --icon=dialog-info "Device Connected" "Welcome Back!"
touch /tmp/autoUnlock.lock
##Uncomment the 3 following lines if you would like your computer to remind you if you lock your screen without disconnecting the device
#echo "Don't forget your device!" > /tmp/androidReminder
#DISPLAY=:0 festival --tts /tmp/androidReminder
#rm /tmp/androidReminder
fi
fi
sleep 2
done
Now you simply add a line to your crontab to run this script every minute:
crontab -e
add the line:
* * * * * bash /home/username/bin/autoUnlock & >/dev/null 2>&1
That's it! Now, when you unplug your Android phone it should lock the screen. When you plug in again, the screen unlocks. Easy!
More information:
http://echowarp.neomenlo.org/2009/scripts/unlock-your-screen-with-any-usb-device
https://help.ubuntu.com/community/UsbDriveDoSomethingHowto
1 comment:
nice...that is a slick. Not 100% why I would need to implement the script, but I think I'll give it a shot. Finally made the move away from RIM...it was hard to drop the BlackBerry, but the Droid made it easier.
Post a Comment