Path: blob/main/contrib/bsddialog/examples_utility/slider.sh
96290 views
#!/bin/sh1#-2# SPDX-License-Identifier: CC0-1.03#4# Written in 2025 by Braulio Rivas.5#6# To the extent possible under law, the author has dedicated all copyright7# and related and neighboring rights to this software to the public domain8# worldwide. This software is distributed without any warranty, see:9# <http://creativecommons.org/publicdomain/zero/1.0/>.1011: ${BSDDIALOG_ERROR=255}12: ${BSDDIALOG_OK=0}13: ${BSDDIALOG_CANCEL=1}14: ${BSDDIALOG_ESC=5}1516STARTEND=$(./bsddialog --slider "Choose a new partition location" 0 0 MiB \1730000 5000 6000 0 1000 3000 25000 30000 \183>&1 1>&2 2>&3 3>&-)1920case $? in21$BSDDIALOG_ERROR )22exit 123;;24$BSDDIALOG_ESC )25echo "[ESC]"26;;27$BSDDIALOG_CANCEL )28echo "[Cancel]"29;;30$BSDDIALOG_OK )31echo "[OK] $STARTEND"32;;33esac343536