flake-update-20260505
 1#!/usr/bin/env bash
 2set -e
 3if [ ! $(uname -s) = "Darwin" ]; then
 4    if command -v wl-copy  &> /dev/null; then
 5        wl-copy $@
 6    else
 7        xsel --clipboard --input $@
 8    fi
 9else
10    pbcopy $@
11fi