lituus up to date

This commit is contained in:
Anish Lakhwara
2022-10-03 23:59:21 +10:00
parent 1dcff2a4a5
commit 9ac75ad03c
11 changed files with 73 additions and 13 deletions
+14 -1
View File
@@ -57,6 +57,18 @@
#ssb-patchwork
fontconfig
pandoc
(pkgs.writeScriptBin "jq-repl" ''
#!/usr/bin/env bash
if [[ -z $1 ]] || [[ $1 == "-" ]] then
input=$(mktemp)
trap "rm -f $input" EXIT
cat /dev/stdin > $input
else
input=$1
fi
echo "" \ | fzf --phony --preview-window="up:90%" --print-query --preview "jq --color-output -r {q} $input"
'')
];
programs.zsh = {
@@ -183,11 +195,12 @@
# task warrior
# TODO: make blocked a context?
t = "task -BLOCKED";
tin = "task +in";
tun = "task -BLOCKED -wait";
tr = "task newest limit:page";
tu = "task unblocked -wait";
tl = "task list";
ta = "task add";
ta = "task add +in";
tn = "task-note";
tm = "task limit:page";
te = "task edit";
+4 -1
View File
@@ -47,7 +47,10 @@ report._reviewed.sort=reviewed+,modified+
report._reviewed.filter=( reviewed.none: or reviewed.before:now-6days ) and ( +PENDING or +WAITING )
report.list.columns=id,priority,project,tags,recur.indicator,scheduled.countdown,due,until.remaining,description.count
report.list.labels=ID,P,Project,Tags,R,Sch,Due,Until,Description
report.in.columns = id,description report.in.description = Inbox report.in.filter = status:pending limit:page (+in) report.in.labels = ID,Description
report.in.columns=id,description
report.in.description=Inbox
report.in.filter=status:pending limit:page (+in)
report.in.labels=ID,Description
urgency.user.project.wait.coefficient=-10.0
urgency.user.project.craft.coefficient=1.9
urgency.user.project.chores.coefficient=0.8