Commit fa1bb64a authored by Igor Pecovnik's avatar Igor Pecovnik
Browse files

Add Gimp to quick install option beside Libre Office

parent 753c5f13
...@@ -1030,6 +1030,14 @@ function jobs () ...@@ -1030,6 +1030,14 @@ function jobs ()
fi fi
;; ;;
"Gimp" )
if ! check_if_installed gimp then ; then
debconf-apt-progress -- apt-get -y install gimp
else
debconf-apt-progress -- apt-get -y purge gimp
fi
;;
"Libre" ) "Libre" )
debconf-apt-progress -- apt-get -y purge libreoffice* debconf-apt-progress -- apt-get -y purge libreoffice*
;; ;;
......
...@@ -393,6 +393,11 @@ while true; do ...@@ -393,6 +393,11 @@ while true; do
else else
LIST+=( "Thunderbird" "Remove full featured email client" ) LIST+=( "Thunderbird" "Remove full featured email client" )
fi fi
if ! check_if_installed gimp ; then
LIST+=( "Gimp" "Install photo manipulation tool" )
else
LIST+=( "Gimp" "Remove photo manipulation tool" )
fi
if ! check_if_installed libreoffice-writer ; then if ! check_if_installed libreoffice-writer ; then
LIST+=( "Writer" "Libreoffice: Writer only" ) LIST+=( "Writer" "Libreoffice: Writer only" )
LIST+=( "Suite" "Libreoffice: Full suite" ) LIST+=( "Suite" "Libreoffice: Full suite" )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment