-
-
Save scammi/58fec7173f5cdc15e9984631f1a7d53f to your computer and use it in GitHub Desktop.
Fast note taking with ghostwriter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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