aboutsummaryrefslogtreecommitdiff
path: root/loader.py
blob: 6a43a842804c3e9838907ce84bb2688c2092086f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

from dialog import Dialog

d = Dialog(dialog="dialog")
d.set_background_title("Select file to load.....")
code, selection = d.fselect('/mnt/images/',10,70)
if code == d.OK :
  d.set_background_title("loading:" +selection)
  d.pause("Something should happen here",15,70,15)