Advertisement
Guest User

~/.config/i3blocks/config

a guest
Jun 27th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. # i3blocks config file
  2. #
  3. # Please see man i3blocks for a complete reference!
  4. # The man page is also hosted at http://vivien.github.io/i3blocks
  5. #
  6. # List of valid properties:
  7. #
  8. # align
  9. # color
  10. # command
  11. # full_text
  12. # instance
  13. # interval
  14. # label
  15. # min_width
  16. # name
  17. # separator
  18. # separator_block_width
  19. # short_text
  20. # signal
  21. # urgent
  22.  
  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/lib/i3blocks/$BLOCK_NAME
  28. separator_block_width=15
  29. markup=none
  30.  
  31. # Volume indicator
  32. #
  33. # The first parameter sets the step (and units to display)
  34. # The second parameter overrides the mixer selection
  35. # See the script for details.
  36. [volume]
  37. label=
  38. #label=♪
  39. instance=Master
  40. #instance=PCM
  41. interval=once
  42. signal=10
  43. color=#00FF00
  44.  
  45. # Memory usage
  46. #
  47. # The type defaults to "mem" if the instance is not specified.
  48. [memory]
  49. label=
  50. separator=false
  51. interval=30
  52. color=#cd5c5c
  53.  
  54. [memory]
  55. label=
  56. instance=swap
  57. separator=false
  58. interval=30
  59. color=#1e90ff
  60.  
  61. # Disk usage
  62. #
  63. # The directory defaults to $HOME if the instance is not specified.
  64. # The script may be called with a optional argument to set the alert
  65. # (defaults to 10 for 10%).
  66. [disk]
  67. label=
  68. #instance=/mnt/data
  69. interval=30
  70. color=#adff2f
  71.  
  72. # Network interface monitoring
  73. #
  74. # If the instance is not specified, use the interface used for default route.
  75. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  76. #[iface]
  77. #instance=wlan0
  78. #color=#00FF00
  79. #interval=10
  80. #separator=false
  81.  
  82. #[wifi]
  83. #instance=wlp3s0
  84. #interval=10
  85. #separator=false
  86.  
  87. #[bandwidth]
  88. #instance=eth0
  89. #interval=5
  90.  
  91. # CPU usage
  92. #
  93. # The script may be called with -w and -c switches to specify thresholds,
  94. # see the script for details.
  95. [cpu_usage]
  96. label=
  97. interval=10
  98. min_width=CPU: 100.00%
  99. #separator=false
  100. color=#4dd2ff
  101.  
  102. #[load_average]
  103. #interval=10
  104.  
  105. # Battery indicator
  106. #
  107. # The battery instance defaults to 0.
  108. #[battery]
  109. #label=BAT
  110. #label=⚡
  111. #instance=1
  112. #interval=30
  113.  
  114. # Custom module for testing the "battery" Font Awesome icon
  115. [battery_custom]
  116. label=
  117. command= echo "No Battery"
  118. interval=30
  119. color=#ff3333
  120.  
  121.  
  122. # Date Time
  123. #
  124. [time]
  125. label=
  126. command=date '+%Y-%m-%d %H:%M:%S'
  127. interval=5
  128. color=#9370db
  129.  
  130. # Generic media player support
  131. #
  132. # This displays "ARTIST - SONG" if a music is playing.
  133. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  134. #[mediaplayer]
  135. #instance=spotify
  136. #interval=5
  137. #signal=10
  138.  
  139. # OpenVPN support
  140. #
  141. # Support multiple VPN, with colors.
  142. #[openvpn]
  143. #interval=20
  144.  
  145. # Temperature
  146. #
  147. # Support multiple chips, though lm-sensors.
  148. # The script may be called with -w and -c switches to specify thresholds,
  149. # see the script for details.
  150. #[temperature]
  151. #label=TEMP
  152. #interval=10
  153.  
  154. # Key indicators
  155. #
  156. # Add the following bindings to i3 config file:
  157. #
  158. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  159. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  160. #[keyindicator]
  161. #instance=CAPS
  162. #interval=once
  163. #signal=11
  164.  
  165. #[keyindicator]
  166. #instance=NUM
  167. #interval=once
  168. #signal=11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement