dotfiles

Yes, my $HOME has a git repo now :(

git clone git://git.shimmy1996.com/dotfiles.git

starlink (166B)

    1 #!/usr/bin/env sh
    2 
    3 # Replaces files in given directory with IPFS symlinks.
    4 find "$1" -type f -exec \
    5      sh -c 'ipfs add -q "{}" | xargs -I@ ln -sf /ipfs/@ "{}"' \;