Quick-Linux-Setup/.test/choose/LibreWolf.sh

20 lines
453 B
Bash
Raw Normal View History

2024-09-30 18:32:42 -05:00
#!/bin/sh
(
echo "10"
echo "20"
echo "50"
echo "75"
echo "100"
) |
zenity --progress \
--title="Installing Web Browser" \
--text="Beginning installation..." \
--percentage=0
if [ "$?" = -1 ] ; then
zenity --error \
--text="Installation was canceled."
else
zenity --info \
--text="To apply custom configuration, open LibreWolf and then close it. Doing so will generate the folder for LibreWolf. Once you've done that, click OK."
fi