Page 1 of 1

cli script to load sfs files (Solved)

Posted: Wed 03 Oct 2012, 23:21
by bark_bark_bark
Where can I find a script that allows me to load an sfs file and how would I integrate it in my cli puplet with woof?

Posted: Fri 05 Oct 2012, 08:12
by RSH
You can use sfs_load by console.

Code: Select all

sfs_load --cli --skip-fixmenus --quiet "Your SFS Here"
This will show no gui and no gui messages. I use this in LazY Puppy to load the sfs from the LazY Puppy RunScripts without the need to confirm its loading and getting any messages to be clicked out of the way.

--cli ---> means command line interface
--skip-fixmenus ---> means no menu is rebuild
--quiet ---> means no gui messages will be shown

RSH

EDIT

sfs_load 1.9x is needed for this

Posted: Fri 05 Oct 2012, 11:48
by bark_bark_bark
thank you