Apps :: Dmix
Any way to auto-save volume settings in Dmix?
(keep having to set them after boot).
That's a good idea.
Maybe it can be added to a future version.
(after much searching)
This will generate the restore file which i can run after.
vol_save.sh
-------------
#!/bin/bash
# save volume settings
umix -q | awk '{print "umix "$1 " " $2 $3}' | grep [0123456789] > vol_restore.sh
sed '1i#!/bin/bash' vol_restore.sh > tmpfile
mv tmpfile vol_restore.sh
chmod 775 vol_restore.sh
------------
Why not use:
umix -s -f umix.sav
umix -l -f umix.sav
great!
Next Page...
original here.