Alexei:
Ok, after playing with this for awhile, I'm wondering if it'd be possible to modify your python script to print out a file list of a specific directory rather than open Rox. I've had to install Rox on my SD as my 750 has no room in flash memory, so Rox is VERY slow to start.
I was hoping to have a similar function to one found in traviso's config where the popup menu lists my mp3 or video directory, then selecting a file name plays the file
#### Browse Audio/Video Directory
DestroyFunc FuncFvwmMenuDirectory
AddToFunc FuncFvwmMenuDirectory
+ I PipeRead 'case "$0" in \
"$[fvwm_video_path]"*) myexec="$[fvwm_video_exec]" mypng=icons/globes/video.png;; \
"$[fvwm_audio_path]"*) myexec="$[fvwm_audio_exec]" mypng=icons/globes/audio.png;; \
esac; \
fvwm-menu-directory --icon-title icons/globes/folder.png --icon-file ${mypng:-icons/globes/folder.png} \
--icon-dir icons/globes/folder.png --dir "$0" --exec-t="^${myexec:-gvim} *" \
--exec-file "^${myexec:-gvim}"'
DestroyMenu MenuMultimedia
AddToMenu MenuMultimedia
+ MissingSubmenuFunction FuncFvwmMenuDirectory
+ "Browse : &Videos"%icons/globes/folder.png% Popup $[fvwm_video_path]
+ "Browse : &Music"%icons/globes/folder.png% Popup $[fvwm_audio_path]
The above function requires fvwm-menu-directory
to work but it is written in perl and hence won't run on pdaXrom. Could your python script be modified to do the same function as the fvwm-menu-directory perl script?
Something to ponder as we wait for the RC7
Cheers,
Jerry