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.

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