From df1092578631b5812ed2aa935bf376399bbeee79 Mon Sep 17 00:00:00 2001 From: Dave Jansen Date: Tue, 2 Dec 2025 19:58:08 +0900 Subject: [PATCH] Add communication-related packages Neomutt, weechat, and newsboat --- build_files/build.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/build_files/build.sh b/build_files/build.sh index 2686f10..5181696 100755 --- a/build_files/build.sh +++ b/build_files/build.sh @@ -25,6 +25,7 @@ dnf5 install -y \ ripgrep \ curl wget \ stow \ + pass \ wl-clipboard \ htop \ gnupg2-scdaemon \ @@ -33,7 +34,11 @@ dnf5 install -y \ python3 python3-pip \ nodejs \ dotnet-sdk-8.0 \ - php composer + php composer \ + weechat \ + neomutt libnotify notmuch abook isync \ + khal vdirsyncer \ + newsboat # Install uv curl -LsSf https://astral.sh/uv/install.sh | sh @@ -47,6 +52,14 @@ wget https://github.com/1player/host-spawn/releases/latest/download/host-spawn-x chmod +x host-spawn-x86_64 mv host-spawn-x86_64 /usr/local/bin/host-spawn +# Set up a few host-spawn aliases +ln -s /usr/local/bin/host-spawn /usr/local/bin/flatpak +ln -s /usr/local/bin/host-spawn /usr/sbin/podman + +# For seeing notifications (ie. from ) +ln -s /usr/local/bin/host-spawn /usr/sbin/dbus-send +ln -s /usr/local/bin/host-spawn /usr/local/bin/op + # Cleanup dnf5 clean all