2 files changed,
5 insertions(+),
2 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2025-01-02 23:26:39 +0200
Parent:
3437327
jump to
| A | bin/refile |
| M | bin/today |
A
bin/refile
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash +f="$HOME/org/refile.org" +[ -f "$f" ] && exec $EDITOR "$f"
M
bin/today
@@ -1,4 +1,4 @@
#!/usr/bin/env bash -p=$HOME/Documents/Obsidian/journal +p="$HOME/org/roam/daily" d=$(date +%Y-%m-%d) -[ -d "$p" ] && exec nvim "$p/$d.md" +[ -d "$p" ] && exec $EDITOR "$p/$d.org"