blob: 5e7564f585785811fcf35a4e97d939240ca1ba69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# $Id: pause-both,v 1.2 2020/11/26 00:05:11 tom Exp $
. ./setup-vars
$DIALOG --title "PAUSE" \
--help-button \
--extra-button "$@" \
--pause "Hi, this is a pause widget" 20 70 10
returncode=$?
echo return $returncode
. ./report-button
|