dotfiles

Configuration for the software I use.
git clone https://git.jaderune.net/jbauer/dotfiles
Log | Files | Refs | README | LICENSE

commit 80b4c028303fb9368a6b2687d35ed73b1fa08835
parent de840f02d26580780767adec2300e4cd7ad04522
Author: Jake Bauer <jbauer@paritybit.ca>
Date:   Wed,  3 May 2023 21:00:01 -0400

Add new daily notes script

Diffstat:
A.local/bin/ndn | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/.local/bin/ndn b/.local/bin/ndn @@ -0,0 +1,11 @@ +#!/bin/sh + +# ndn - new daily note +# create a new daily note file + +today=$(date +%Y-%m-%d) +cd ~/Documents/Daily\ Notes +echo "Daily Notes $today +====================== +" > "$today" +nvim "$today"