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.

165 lines
3.0 KiB

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