1
0

update readme

This commit is contained in:
Rokas Puzonas 2023-06-04 16:04:13 +03:00
parent 8a9a3647af
commit 938c87592f
2 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,19 @@
# AwesomeWM
Original gotten from: https://github.com/Manas140/dotfiles
## Other cool dotfiles
* [elenapan's dotfiles](https://github.com/elenapan/dotfiles)
* [javacage's dotfiles](https://github.com/JavaCafe01/dotfiles)
* https://github.com/WillPower3309/awesome-dotfiles
* https://github.com/manilarome/the-glorious-dotfiles
* https://github.com/v1ewport/CYBIT
## Cool AwesomeWM libs
* https://github.com/BlingCorp/bling
* https://github.com/xinhaoyuan/layout-machi
* https://github.com/potamides/modalawesome
* https://github.com/mut-ex/awesome-wm-nice
* https://awesomewm.org/recipes/mic/
* https://awesomewm.org/recipes/wirelessStatus/
* https://awesomewm.org/recipes/watch/

View File

@ -2,6 +2,14 @@ local taskwarrior = {}
local DEFAULT_SIGNAL = "taskwarrior::stats"
--[[
Get id of next task:
`task next | sed -n '4p' | awk '{print $1}`
Get due date and description by id:
`task _get $ID.due $ID.description`
]]--
local task_script = [[echo $(task +PENDING count) $(task +OVERDUE count)]]
--- callback: function(pending, overdue)