Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > 4b118028600939068a9eabcfca167d43 > files > 74

Xdialog-2.3.1-11.mga7.x86_64.rpm

#!/bin/sh

VOLUME=`Xdialog 2>&1 --title "RANGE BOX" --rangebox "Please set the volume..." 0 0 0 12 5`

case $? in
  0)
    echo "Volume set to $VOLUME.";;
  1)
    echo "Cancel pressed.";;
  255)
    echo "Box closed.";;
esac