repo.or.cz
/
rox-volume.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Forgot to delete the actual pngs
[rox-volume.git]
/
AppletRun
blob
1cacc62e38fba674a51500c12d381e5cd83a0351
1
#!/usr/bin/env python
2
import
findrox
;
findrox
.
version
(
1
,
9
,
13
)
3
import
rox
,
os
,
sys
4
5
__builtins__
._
=
rox
.
i18n
.
translation
(
os
.
path
.
join
(
rox
.
app_dir
,
'Messages'
))
6
7
8
import
volume
9
if
len
(
sys
.
argv
) >
1
:
10
main
=
volume
.
Volume
(
sys
.
argv
[
1
])
11
else
:
12
main
=
volume
.
Volume
(
1
)
13
rox
.
mainloop
()