The memory card indicator was just in the mockup I did to explain the concept.milkshake said:can I just ask when I remember the early development of minimenu im sure I remember there being a memory card memory indicator similar to the battery indicator is this not the case? is it somthing thats going to be implamented into the future?
also looking through the mmskin.conf I cant find where to change the font size for the battery text or hint text does this need to be added?
DaveC said:That was not coded into the actual MM so no need to try to find the feature.
Sarlix said:Anyone figured out how to take a screenshot in minimenu yet? ...
MasterLinux said:That's what i need Thank you. I have modify the script a little bit. So it takes all 25 seconds a screenshot. So i can take screenshots from the inside of any emulator or other programm. It's not a perfect solution, but it works fine
Here is it:
Code:#!/bin/bash i=1 while [ $i -le 25 ] do sleep 25 fbgrab ~/screen`date +%y%m%d-%H%M%S`.png notify-send screen $i i=`expr $i + 1` done
An improvement was also made elsewhere but I cant find it at present. The newer script allowed for hotkeys to switch the script on/off like the wifi-toggle, as with the above one you'll need to log out/in again to turn it off. Just modify it to write the grabs to where you want them stored and the timing.
timothee said:Thanks! I did see that snippet on the gp32x thread. I'm not so hot on having that running in the background though, because screen grabbing introduces some lag. I still much prefer an on demand approach, and I'm ok with using ssh (even without the wife ), though clearly it's not a good solution on the go :/ . Perhaps, I'll check low level key binding later.
Now with that said, it should be quite easy to have a start/stop toggle system for that script, maybe like so (warning, not tested):
Code:#!/bin/bash PIDFILE=~/.snapsnap.pid if [ -f $PIDFILE ] then kill $(cat $PIDFILE) rm $PIDFILE exit 0 else echo $$ > $PIDFILE fi; i=1 while [ $i -le 24 ] do sleep 10 fbgrab ~/screen`date +%y%m%d-%H%M%S`.png notify-send screen $i i=`expr $i + 1` done
indeedmilkshake said:gray is sexy