From 8348b48a92bfd5397da2668ba683761f5dbb9e46 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 31 Oct 2025 19:43:27 +0300 Subject: [PATCH 1/4] added gimp... Signed-off-by: Alex A. Naanou --- post-install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/post-install b/post-install index 9e37385..2df87c1 100755 --- a/post-install +++ b/post-install @@ -227,7 +227,7 @@ PKG_DNF=( terminus-fonts-grub2 # dev... - git + git git-gui nodejs golang upx @@ -317,6 +317,7 @@ PKG_FLATPAK=( ch.openboard.OpenBoard org.inkscape.Inkscape org.blender.Blender + org.gimp.GIMP ) PKG_SNAP=( From a21d6a61e7c54d3e96718fa56f4cae99cf685ac8 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 1 Nov 2025 21:41:51 +0300 Subject: [PATCH 2/4] added a couple of missing things... Signed-off-by: Alex A. Naanou --- post-install | 2 ++ 1 file changed, 2 insertions(+) diff --git a/post-install b/post-install index 2df87c1..eb1f077 100755 --- a/post-install +++ b/post-install @@ -318,6 +318,8 @@ PKG_FLATPAK=( org.inkscape.Inkscape org.blender.Blender org.gimp.GIMP + org.freecad.FreeCAD + com.usebottles.bottles ) PKG_SNAP=( From e228d6cebaa169396320a35be89296d19c737d30 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 2 Nov 2025 19:59:17 +0300 Subject: [PATCH 3/4] added nyx Signed-off-by: Alex A. Naanou --- post-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-install b/post-install index eb1f077..3cb40e8 100755 --- a/post-install +++ b/post-install @@ -185,7 +185,7 @@ PKG_DNF=( # networking... syncthing - tor obfs4 + tor obfs4 nyx yt-dlp qbittorrent httrack # tools... From 667edd236473ea7caef8e99ba38099439efdf18b Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 3 Nov 2025 02:43:41 +0300 Subject: [PATCH 4/4] added package removal... Signed-off-by: Alex A. Naanou --- post-install | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/post-install b/post-install index 3cb40e8..0137df1 100755 --- a/post-install +++ b/post-install @@ -79,6 +79,7 @@ FEATURES=( flathub dnf + dnf-remove flatpak npm vim @@ -279,6 +280,12 @@ PKG_DNF=( ${PKG_DNF_LATEX[@]} ) +PKG_DNF_REMOVE=( + gnome-tour + gnome-shell-extension-background-logo + gnome-shell-extension-apps-menu +) + # XXX PKG_TERMUX=( @@ -405,6 +412,8 @@ EOF # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# NOTE: if using exclude=... first remove the package and then add it +# to exclude=... function feature-dnf-config(){ if [ -z "$(grep 'f_lynx/post-install' /etc/dnf/dnf.conf)" ] ; then echo Updating config @@ -449,6 +458,9 @@ function feature-dnf(){ @ sudo dnf update ${DNF_ARGS} @setupList sudo dnf install ${DNF_ARGS} - ${PKG_DNF[@]} } +function feature-dnf-remove(){ + @setupList sudo dnf remove ${DNF_ARGS} - ${PKG_DNF_REMOVE[@]} +} # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -