mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
11 lines
178 B
Bash
11 lines
178 B
Bash
#!/bin/bash
|
|
|
|
if [[ $(task "$1" +fleeting 2>&1) == "No matches." ]];
|
|
then
|
|
task "$1" modify +fleeting
|
|
task "$1" annotate fleeting
|
|
taskopen $1
|
|
else
|
|
taskopen $1
|
|
fi
|