Add linux specific autosnapsmf module and dependencies
[time-slider.git] / usr / lib / time-slider-snapshot
1 #!/usr/bin/env python2.6
2
3 import sys
4 from os.path import dirname, join, pardir, abspath
5 sys.path.insert(0, join(dirname(__file__), pardir, 'share',
6                         'time-slider', 'lib'))
7
8 from time_slider.snapnowui import main
9
10 # Pass through the executable path in case it needs to
11 # be invoked via gksu (user has insufficient priviliges) 
12 main(abspath(__file__))
13