From 0202087db9ce2fb29c85649b780547a1c782a602 Mon Sep 17 00:00:00 2001 From: gmpinder Date: Fri, 9 Jun 2023 20:35:37 -0400 Subject: [PATCH] Don't install intellij --- recipe-framework.yml | 2 +- scripts/install-intellij.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe-framework.yml b/recipe-framework.yml index 1391cb1..6fca2f8 100644 --- a/recipe-framework.yml +++ b/recipe-framework.yml @@ -8,7 +8,6 @@ scripts: post: - autorun.sh - enable-fingerprintd.sh - - install-intellij.sh rpm: # A list of urls of ".repo" files that should be added to your system. # This is the proper way to add custom COPR repos to your image. @@ -31,6 +30,7 @@ rpm: - fprintd-pam - tlp - powertop + - neofetch remove: # Remove the native firefox (from Fedora) in favor of the Flatpak. - firefox diff --git a/scripts/install-intellij.sh b/scripts/install-intellij.sh index 0579f93..52d128b 100644 --- a/scripts/install-intellij.sh +++ b/scripts/install-intellij.sh @@ -2,7 +2,7 @@ set -eou pipefail # Version number -VERSION="2023.1.2" +VERSION=$(curl -s "https://blog.jetbrains.com/idea/" | grep -oP 'IntelliJ IDEA \K[0-9]+\.[0-9]+\.[0-9]*' | head -1) # Download https://download.jetbrains.com/idea/ideaIC-${VERSION}.tar.gz curl -L -o /tmp/ideaIC-${VERSION}.tar.gz https://download.jetbrains.com/idea/ideaIC-${VERSION}.tar.gz