mirror of
https://github.com/daylinmorgan/task.mk.git
synced 2024-12-22 01:50:44 -06:00
docs: update readme with newer examples/config
This commit is contained in:
parent
a0a9a33408
commit
c3fa7cd8fc
1 changed files with 4 additions and 3 deletions
|
@ -106,8 +106,9 @@ PARAMS_COLOR ?= b_magenta
|
|||
ACCENT_COLOR ?= b_yellow
|
||||
GOAL_COLOR ?= $(ACCENT_COLOR)
|
||||
MSG_COLOR ?= faint
|
||||
HELP_SEP ?= |
|
||||
HELP_SORT ?= # sort goals alphabetically
|
||||
DIVIDER_COLOR ?= default
|
||||
DIVIDER ?= ─
|
||||
HELP_SEP ?= │
|
||||
|
||||
# python f-string literals
|
||||
EPILOG ?=
|
||||
|
@ -152,6 +153,7 @@ For what it's worth there is also a predefined function for `bash` (named `tbash
|
|||
|
||||
```make
|
||||
define bash_script
|
||||
figlet task.mk 2>/dev/null || echo 'no figlet :('
|
||||
echo "This is from bash"
|
||||
cat /etc/hostname
|
||||
printf "%s\n" "$(2)"
|
||||
|
@ -162,7 +164,6 @@ test-bash:
|
|||
```
|
||||
|
||||
|
||||
|
||||
## Zsh Completions for GNU Make
|
||||
|
||||
If you use `GNU Make` with zsh you may want to add the following
|
||||
|
|
Loading…
Reference in a new issue