aboutsummaryrefslogtreecommitdiffstats
path: root/lem
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xlem7
1 files changed, 4 insertions, 3 deletions
diff --git a/lem b/lem
index 5c4fb9f..6e266ad 100755
--- a/lem
+++ b/lem
@@ -1,8 +1,8 @@
-#!/bin/bash
+#!/usr/local/bin/bash
NOTES=/home/$USER/Notes
TARGET_DIR=$NOTES/homezet
-VIM=/usr/bin/vim
+VIM=/usr/local/bin/vim
if [[ "$1" = "-m" ]]; then
msg="${*:2}"
@@ -16,6 +16,7 @@ fi
STAMP="$(date +%G%m%d%H%M%S)"
F_PATH="$TARGET_DIR/$STAMP-$msg.md"
-echo $F_PATH
+
+printf "# %s\n\n", "$msg" >> "$F_PATH"
$VIM "$F_PATH"