Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.

105 wiersze
1.8KB

  1. {{ ansible_managed | comment }}
  2. # i3blocks config file
  3. #
  4. # Please see man i3blocks for a complete reference!
  5. # The man page is also hosted at http://vivien.github.io/i3blocks
  6. #
  7. # List of valid properties:
  8. #
  9. # align
  10. # color
  11. # command
  12. # full_text
  13. # instance
  14. # interval
  15. # label
  16. # min_width
  17. # name
  18. # separator
  19. # separator_block_width
  20. # short_text
  21. # signal
  22. # urgent
  23. # Global properties
  24. #
  25. # The top properties below are applied to every block, but can be overridden.
  26. # Each block command defaults to the script name to avoid boilerplate.
  27. command=/usr/share/i3blocks/$BLOCK_NAME
  28. separator_block_width=15
  29. markup=none
  30. # activity
  31. [activity]
  32. command=cat ~/.timer/activity.i3blocks; socat UNIX-LISTEN:$HOME/.timer/activity.i3blocks.sock,fork -
  33. interval=persist
  34. markup=pango
  35. # hostinfo
  36. [hostinfo]
  37. command=echo "$USER@`hostname -s`"
  38. interval=once
  39. # Load Average
  40. [load_average]
  41. interval=10
  42. # CPU usage
  43. #
  44. # The script may be called with -w and -c switches to specify thresholds,
  45. # see the script for details.
  46. #[cpu_usage]
  47. #label=CPU
  48. #interval=10
  49. #min_width=CPU: 100.00%
  50. # Memory usage
  51. #
  52. # The type defaults to "mem" if the instance is not specified.
  53. [memory]
  54. label=MEM
  55. interval=30
  56. [memory]
  57. label=SWAP
  58. instance=swap
  59. interval=30
  60. # Disk usage
  61. #
  62. # The directory defaults to $HOME if the instance is not specified.
  63. # The script may be called with a optional argument to set the alert
  64. # (defaults to 10 for 10%).
  65. [disk]
  66. label=HOME
  67. interval=30
  68. # Battery indicator
  69. #
  70. # The battery instance defaults to 0.
  71. [battery]
  72. #label=BAT
  73. label=⚡
  74. #instance=1
  75. interval=30
  76. # Volume indicator
  77. #
  78. # The first parameter sets the step (and units to display)
  79. # The second parameter overrides the mixer selection
  80. # See the script for details.
  81. [volume]
  82. #label=VOL
  83. label=♪
  84. instance=Master
  85. #instance=PCM
  86. interval=once
  87. signal=10
  88. # Date Time
  89. #
  90. [time]
  91. command=date '+%Y-%m-%d W%V %a %H:%M %Z'
  92. interval=5