15 lines
295 B
Bash
Executable File
15 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title task next
|
|
# @raycast.mode fullOutput
|
|
# @raycast.packageName Taskwarrior
|
|
|
|
# Optional parameters:
|
|
# @raycast.icon ⏳
|
|
|
|
export PATH="/usr/local/bin:/opt/local/bin:/opt/local/sbin:$PATH:$HOME/bin:$HOME/.bin"
|
|
|
|
exec task
|