28 lines
No EOL
596 B
Bash
28 lines
No EOL
596 B
Bash
if zenity --width=400 --height=600 --list --title "Linux Setup" --ok-label="Uninstall Now" --cancel-label="Abort Setup" --text 'The following will be uninstalled' --column 'Apps' \
|
|
"Camera" \
|
|
"Characters" \
|
|
"Clocks" \
|
|
"Connections" \
|
|
"Contacts" \
|
|
"Disk" \
|
|
"Document Scanner" \
|
|
"Disk Usage Analyzer" \
|
|
"Document Viewer" \
|
|
"Fedora Media Writer" \
|
|
"Fonts" \
|
|
"Help" \
|
|
"Libre Office" \
|
|
"Logs" \
|
|
"Maps" \
|
|
"Mozilla Firefox" \
|
|
"Problem Reporting" \
|
|
"Rhythmbox" \
|
|
"System Monitor" \
|
|
"Terminal" \
|
|
"Tour" \
|
|
"Videos" \
|
|
"Weather"; then
|
|
echo "Uninstalling apps now..."
|
|
else
|
|
echo "Setup was aborted"
|
|
fi |