var.yuck 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ; system i.e for progress bars
  2. (defpoll cpu :interval "1s"
  3. "scripts/system cpu")
  4. (defpoll ram :interval "1s"
  5. "scripts/system ram")
  6. (defpoll disk :interval "1s"
  7. "scripts/system disk")
  8. (defpoll battery :interval "1s"
  9. "scripts/system battery")
  10. ; date time
  11. (defpoll time :interval "1s"
  12. "date +'%H:%M'")
  13. (defpoll date :interval "1s"
  14. "date +'%a, %d %m %y'")
  15. ; sliders
  16. ; audio
  17. (defpoll master_vol :interval "1s"
  18. "scripts/audio mastervol")
  19. (defpoll head_vol :interval "1s"
  20. "scripts/audio headvol")
  21. (defpoll mic_vol :interval "1h"
  22. "scripts/audio micvol")
  23. ; backlight
  24. (defpoll brightness :interval "1s"
  25. "scripts/system backlight")
  26. ; pkg related
  27. (defpoll updates :interval "1s"
  28. "scripts/system pkgUpdates")
  29. (defpoll pkgs :interval "1s"
  30. "scripts/system pkgCount")
  31. ; btns
  32. ; wifi iwdgtk btn
  33. (defpoll wifi :interval "1s"
  34. "scripts/system wifi")
  35. ;fetch
  36. (defpoll os :interval '10000s'
  37. 'scripts/fetch os')
  38. (defpoll shell :interval '100000s'
  39. 'scripts/fetch shell')
  40. (defpoll wm :interval '100000s'
  41. 'scripts/fetch wm')