Added utilities separation and listed dependencies at the bottom of the primary bashrc
This commit is contained in:
8
bash/utility
Normal file
8
bash/utility
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
# --- Note-taking facilitated ---------------------------------
|
||||
NOTE_PATH='/Users/w0ryn/Documents/notes';
|
||||
NOTE_EXTENSION='.txt';
|
||||
alias mynotes='cd $NOTE_PATH';
|
||||
function note() { vim $NOTE_PATH/$1$NOTE_EXTENSION; }
|
||||
function notes() { NOTE="$NOTE_PATH/$1$NOTE_EXTENSION"; [ $1 ] && [ -f $NOTE ] && vim $NOTE || vim $NOTE_PATH; }
|
Reference in New Issue
Block a user