aboutsummaryrefslogtreecommitdiffstats
path: root/fish2024/functions/breakfast.fish
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-02-04 20:07:50 +0000
committerMatthew Lemon <y@yulqen.org>2024-02-04 20:07:50 +0000
commita81aec9886635214156c287a44d79a6c05a9dd5c (patch)
tree370e443b645e124931cb11875ccf6229a82312e1 /fish2024/functions/breakfast.fish
parente9656a28bdb9c5a5bb5efa07dd5a38aae5398141 (diff)
Removes old breakfast function
Diffstat (limited to '')
-rw-r--r--fish2024/functions/breakfast.fish21
1 files changed, 0 insertions, 21 deletions
diff --git a/fish2024/functions/breakfast.fish b/fish2024/functions/breakfast.fish
deleted file mode 100644
index 6168976..0000000
--- a/fish2024/functions/breakfast.fish
+++ /dev/null
@@ -1,21 +0,0 @@
-function _mealplan --description 'Get the meal plan for a day'
- # Uses the file at ~/Documents/Notes/2.Areas/Health/Breakfast_and_Lunch_Plan_IBD.md
- #set -l cmd "grep Monday ~/Documents/Notes/2.Areas/Health/Breakfast_and_Lunch_Plan_IBD.md|cut -d: -f3"
- if test -z $argv[1]
- echo "Usage: mealplan <day> <meal>"
- echo " day: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday"
- echo " meal: b, l, t"
- return
- end
-
- set -l day $argv[1]
-
- if test $argv[2] = "b"
- set -f meal "-f2"
- else if test $argv[2] = "l"
- set -f meal "-f3"
- else if test $argv[2] = "t"
- set -f meal "-f4"
- end
- echo (grep -i $day ~/Documents/Notes/2.Areas/Health/Breakfast_and_Lunch_Plan_IBD.md|cut -d: $meal)
-end