Skip to content

Instantly share code, notes, and snippets.

@scammi
Created January 26, 2021 14:29
Show Gist options
  • Save scammi/58fec7173f5cdc15e9984631f1a7d53f to your computer and use it in GitHub Desktop.
Save scammi/58fec7173f5cdc15e9984631f1a7d53f to your computer and use it in GitHub Desktop.
Fast note taking with ghostwriter
#!/bin/bash
# install ghostwriter
# mv script to PATH
# chmod +x note
FILE=/$HOME/Documents/notes
if [ ! -d "$FILE" ]; then
mkdir $FILE
fi
cd $HOME/Documents/notes
ghostwriter "$(date +%F).md"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment