diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-28 09:11:47 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-28 09:11:47 +0100 |
commit | f5168c40fc673a071264f2619a82fa07ab010bf8 (patch) | |
tree | df5f63e2b269e86a699a873c86c34a7198875cd8 | |
parent | 4901da4c432c81db657e63cb3d2d8f6b8e625ae7 (diff) |
adds funcs to work with the OBTF concept
-rw-r--r-- | bashrc | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -384,7 +384,31 @@ append_to_masterlist() { cat "$ml" } -[ -f ~/.fzf.bash ] && source ~/.fzf.bash +# Colors for ls - yellow directories +# export LS_COLORS="$LS_COLORS:di=1;33" +# Install Ruby Gems to ~/gems +export GEM_HOME="$HOME/gems" + + +# note() { +# printf "%s\n" "$(date +"%Y-%m-%d: ") $1" >> notes.txt +# } + +# log() { +# printf "%s\n" "$(date +"%Y-%m-%d: ") $*" >> ~/Documents/Notes/Scratch/scratchpad.md +# } + +log() { + printf "%s\n" "$(date +"%Y-%m-%d %A: ") $*" >> ~/Documents/Notes/Scratch/scratchpad.txt +} + +doo() { + printf "%s\n" "- [ ] $*" >> ~/Documents/Notes/Scratch/scratchpad.txt +} + +idea() { + printf "%s\n" "IDEA: $*" >> ~/Documents/Notes/Scratch/scratchpad.txt +} # Setting PATH export PATH=~/bin/:$PATH |