diff --git a/bin/omakub-sub/install.sh b/bin/omakub-sub/install.sh index 4db0be8..6f999ac 100644 --- a/bin/omakub-sub/install.sh +++ b/bin/omakub-sub/install.sh @@ -7,6 +7,7 @@ CHOICES=( "ASDControl Set brightness on Apple Studio and XDR displays" "Brave Chrome-based browser with built-in ad blocking" "Dropbox Sync files across computers with ease" + "Gimp Image manipulation tool ala Photoshop" "Mainline Kernels Install newer Linux kernels than Ubuntu defaults" "Minecraft Everyone's favorite blocky building game" "OBS Studio Record screencasts with inputs from both display + webcam" @@ -22,7 +23,7 @@ CHOICES=( "<< Back " ) -CHOICE=$(gum choose "${CHOICES[@]}" --height 23 --header "Install application") +CHOICE=$(gum choose "${CHOICES[@]}" --height 24 --header "Install application") if [[ "$CHOICE" == "<< Back"* ]] || [[ -z "$CHOICE" ]]; then # Don't install anything diff --git a/install/desktop/optional/app-gimp.sh b/install/desktop/optional/app-gimp.sh new file mode 100644 index 0000000..b2af568 --- /dev/null +++ b/install/desktop/optional/app-gimp.sh @@ -0,0 +1 @@ +sudo apt install -y gimp diff --git a/uninstall/app-gimp.sh b/uninstall/app-gimp.sh new file mode 100644 index 0000000..a847fb3 --- /dev/null +++ b/uninstall/app-gimp.sh @@ -0,0 +1 @@ +sudo apt remove -y gimp