Skip to content

Instantly share code, notes, and snippets.

@baakeydow
Created November 8, 2024 14:13
Show Gist options
  • Save baakeydow/bd8929e88a99f30f371a5c3ceacddf5f to your computer and use it in GitHub Desktop.
Save baakeydow/bd8929e88a99f30f371a5c3ceacddf5f to your computer and use it in GitHub Desktop.
neovide markdown workflow
#!/bin/bash
[ -z "$1" ] && echo "please provide title for new file" && exit 1
file_name=$(echo "$1" | tr ' ' '-')
formatted_file_name=${file_name}.md
cd ~/Obsidian_Vault/📮INBOX📮 || exit
touch "${formatted_file_name}" && nohup neovide "${formatted_file_name}" >/dev/null 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment