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.

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