···230230231231 # task warrior
232232 # TODO: make blocked a context?
233233- t = "task -BLOCKED -idea -backlog"; # Adding these to the next task makes modify things hard
233233+ t = "task -BLOCKED -idea -backlog";
234234 tt = "taskwarrior-tui -r list";
235235 ti = "task +idea";
236236- tb = "task list +backlog";
236236+ tb = "task +backlog list";
237237 ttb = "taskwarrior-tui -r backlog";
238238 tr = "task newest limit:page";
239239 tw = "task +wait";
+8-6
home/profiles/sync/kitaab/default.nix
···55 # Note this will fail if index.wiki is open in vim while this runs
66 mkStartScript = name: pkgs.writeShellScript "${name}.sh" ''
77 # set -euo pipefail # Sometimes vimwiki is open and that causes `vimwiki tags rebuild` to fail, we still want to push to git in those cases
88- PATH=/run/current-system/sw/bin:/etc/profiles/per-user/anish/bin:
99- cd /home/anish/kitaab
88+ PATH=/run/current-system/sw/bin:/etc/profiles/per-user/anish/bin:$PATH
99+ cd /home/anish/kitaab/vimwiki
1010 vimwiki tags rebuild
1111- # python3 poonam/main.py generateindexs
1212- # python3 poonam/main.py generatebacklinks
1111+ cd ..
1312 pushd kalpana/
1414- fennel main.fnl
1313+ ${pkgs.luaPackages.fennel}/bin/fennel main.fnl build
1514 popd
1616- git add -A ./vimwiki/**
1515+ pushd vimwiki/
1616+ git add -A .
1717+ popd
1718 git diff-index --quiet HEAD || git commit -m 'syncing kitaab' # if nothing, don't exit 1
1819 git push
1920 exit 0
···2324 systemd.user.services.kitaab-sync = {
2425 Service = {
2526 ExecStart = "${mkStartScript name}";
2727+ Path = [ pkgs.luaPackages.fennel ];
2628 };
2729 };
2830 systemd.user.timers.kitaab-sync = {
+2-1
home/profiles/task/taskrc
···7272report.unblocked.columns=id,depends,project,tags,due,start.active,description
73737474# Next
7575-report.next.filter=(status:pending -idea -backlog limit:0) # pro.not:ideas
7575+# It's not a good idea to filter this view, since modify depends on the next view
7676+report.next.filter=(status:pending limit:0) # pro.not:ideas -idea -backlog
7677report.next.labels=ID,Active,Deps,P,Project,Tag,Recur,S,Due,Until,Description
7778report.next.columns=id,start.age,depends,priority,project,tags,recur,scheduled.countdown,due.relative,until.remaining,description
7879