View Single Post
Posts: 38 | Thanked: 16 times | Joined on Dec 2009
#18
Thanks a lot for this, I've been using an older version for a while and now after upgrading to the newest one I'm loving the ctrl-backspace alt-tab functionality, along with network disconnect shortcut.. now I just need to remember to use them. Still using the hack you posted earlier to swap Fn and shift, I'm used to it but anyone else who tries the device seems to get slightly confused

Any idea if the default mail client can be launched using osso_exec (or some other way)? Also, finding a way to either a) reconnect to the last used connection or b) connect to a certain (3G) connection would be great.

edit:Found a way to launch default email:
Code:
if key == 'm':
        if os.fork() == 0:
                os.system("modest -s")
final edit: updated to much simpler form after finding os.fork() to allow further shortcuts after launching email

Last edited by low life; 2010-03-31 at 15:07.