i3blocks.conf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Global properties
  2. command=/usr/lib/i3blocks/$BLOCK_NAME
  3. separator_block_width=15
  4. markup=pango
  5. # Volume indicator
  6. #
  7. # The first parameter sets the step (and units to display)
  8. # The second parameter overrides the mixer selection
  9. # See the script for details.
  10. # Guess the weather hourly
  11. [weather]
  12. command=curl -Ss 'https://wttr.in/munich?0&T&Q' | cut -c 16- | head -2 | xargs echo
  13. interval=3600
  14. [notes]
  15. label=🗒️
  16. command=$HOME/.scripts/i3/i3blocks/todoasdkas.sh
  17. interval=5
  18. [pacman]
  19. label=📦
  20. command=$HOME/.scripts/i3/i3blocks/pacman-upgradable.sh
  21. interval=60
  22. [volume]
  23. label=♪
  24. command=$HOME/.scripts/i3/i3blocks/i3volume.sh
  25. interval=2
  26. # Mem %
  27. [memory]
  28. label=mem
  29. interval=30
  30. command=$HOME/.scripts/i3/i3blocks/i3mem.sh
  31. # CPU %
  32. [cpu]
  33. label=cpu
  34. interval=5
  35. command=$HOME/.scripts/i3/i3blocks/i3cpu.sh
  36. # Free Disk Space
  37. [disk]
  38. label=⛁
  39. # Network interface monitoring
  40. [iface]
  41. color=#19c682
  42. interval=10
  43. separator=false
  44. # Battery indicator
  45. [battery]
  46. label=bat
  47. interval=30
  48. command=$HOME/.scripts/i3/i3blocks/i3bat.sh
  49. # Date Time
  50. [time]
  51. command=date '+%d.%m %H:%M '
  52. interval=5