Assorted shell and Python scripts
1#!/usr/bin/env bash 2 3if ! command -v gum >/dev/null; then 4 echo "Gum command not found" 5 exit 0 6fi 7 8cat <<EOF | gum format --theme="pink" -t markdown 9# Debian GNU/Linux 13 (trixie) 10- **Unread feeds** $(/home/jas/bin/feed_count) 11- **Uptime** $(/home/jas/bin/awkuptime) 12- **Kernel** $(uname -r) 13EOF