Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

163 lines
2.9 KiB

  1. # properties {{{ #
  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. # }}} properties #
  24. # Global properties {{{ #
  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. align=center
  28. # command=/usr/share/i3blocks/$BLOCK_NAME
  29. command=~/linux-config/configs/i3blocks-scripts/$BLOCK_NAME
  30. separator=true
  31. separator_block_width=25
  32. markup=pango
  33. # }}} Global properties #
  34. [time]
  35. label=
  36. command=date '+%H:%M.%a-%m-%d'
  37. interval=30
  38. color=#cccccc
  39. [wifi]
  40. label=
  41. instance=wlp3s0
  42. interval=10
  43. [battery]
  44. label=
  45. interval=10
  46. # unbold this?
  47. [load_average]
  48. label=
  49. interval=5
  50. color=#990000
  51. [memory]
  52. label=
  53. color=#006600
  54. [cpu_usage -w 50 -c 80]
  55. label=
  56. min_width=CPU: 100.00%
  57. color=#adeaea
  58. [name]
  59. label=
  60. color=#cc5490
  61. interval=6000
  62. # unused blocks {{{ #
  63. # Volume indicator
  64. #
  65. # The first parameter sets the step (and units to display)
  66. # The second parameter overrides the mixer selection
  67. # See the script for details.
  68. # [volume]
  69. # label=VOL
  70. # #label=♪
  71. # instance=Master
  72. # #instance=PCM
  73. # interval=once
  74. # signal=10
  75. # [memory]
  76. # label=SWAP
  77. # instance=swap
  78. # separator=false
  79. # interval=30
  80. # Disk usage
  81. #
  82. # The directory defaults to $HOME if the instance is not specified.
  83. # The script may be called with a optional argument to set the alert
  84. # (defaults to 10 for 10%).
  85. # [disk]
  86. # label=HOME
  87. # #instance=/mnt/data
  88. # interval=30
  89. # Network interface monitoring
  90. #
  91. # If the instance is not specified, use the interface used for default route.
  92. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  93. # [iface]
  94. # #instance=wlan0
  95. # color=#00FF00
  96. # interval=10
  97. # separator=false
  98. # [bandwidth]
  99. # #instance=eth0
  100. # interval=5
  101. # Battery indicator
  102. #
  103. # The battery instance defaults to 0.
  104. # [battery]
  105. # label=BAT
  106. # #label=⚡
  107. # #instance=1
  108. # interval=30
  109. # Generic media player support
  110. #
  111. # This displays "ARTIST - SONG" if a music is playing.
  112. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  113. #[mediaplayer]
  114. #instance=spotify
  115. #interval=5
  116. #signal=10
  117. # OpenVPN support
  118. #
  119. # Support multiple VPN, with colors.
  120. #[openvpn]
  121. #interval=20
  122. # Temperature
  123. #
  124. # Support multiple chips, though lm-sensors.
  125. # The script may be called with -w and -c switches to specify thresholds,
  126. # see the script for details.
  127. #[temperature]
  128. #label=TEMP
  129. #interval=10
  130. # Key indicators
  131. #
  132. # Add the following bindings to i3 config file:
  133. #
  134. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  135. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  136. #[keyindicator]
  137. #instance=CAPS
  138. #interval=once
  139. #signal=11
  140. #[keyindicator]
  141. #instance=NUM
  142. #interval=once
  143. #signal=11
  144. # }}} unused blocks #