Select the types of activity you want to include in your feed.
1#!/bin/sh 2# 3# Open notes file & take notes 4 5mkdir /tmp/notelock 2> /dev/null || exit 1 6notefile="$HOME/Sync/notes.md" 7nvim "+normal G" '+:set autoread' '+ au CursorHold,CursorHoldI * checktime' "$notefile" 8rmdir /tmp/notelock