13 lines
180 B
Bash
13 lines
180 B
Bash
|
#!/bin/bash
|
||
|
# open quicknote
|
||
|
|
||
|
# set quick note directory
|
||
|
dir="/home/emge/Notes/QuickNotes"
|
||
|
|
||
|
# set current date
|
||
|
curDate=$(date +"%Y-%m-%d")
|
||
|
|
||
|
file=$dir$curDate".md"
|
||
|
|
||
|
foot nvim $file
|