mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
26 lines
419 B
Nix
26 lines
419 B
Nix
{
|
|
writers,
|
|
lib,
|
|
todoman,
|
|
khal,
|
|
util-linux,
|
|
wego,
|
|
pass,
|
|
}:
|
|
writers.writeDashBin "q" ''
|
|
export PATH=$PATH:${
|
|
lib.makeBinPath [
|
|
todoman
|
|
khal
|
|
util-linux
|
|
wego
|
|
pass
|
|
]
|
|
}
|
|
(todo list --due 240; echo) &
|
|
(khal list today today; echo) &
|
|
(cal -3; echo) &
|
|
(wego -location Berlin -owm-api-key "$(pass api-keys/openweathermap)" -frontend emoji -days 2; echo) &
|
|
wait
|
|
''
|