15 lines
300 B
Bash
Executable File
15 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title task sync
|
|
# @raycast.mode compact
|
|
# @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 sync
|