Select the types of activity you want to include in your feed.
1#!/bin/bash 2set -euo pipefail 3 4make --no-print-directory watch-frontend & 5make --no-print-directory watch-backend & 6 7trap 'kill $(jobs -p)' EXIT 8wait