Advertisement
doanhtu

i3blocks.conf

May 24th, 2018
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 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/share/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=1
  42. signal=10
  43. command=/usr/share/i3blocks/volume 5 pulse
  44.  
  45. # Memory usage
  46. #
  47. # The type defaults to "mem" if the instance is not specified.
  48. [memory]
  49. label=
  50. interval=30
  51.  
  52. [openvpn]
  53. label=
  54. command=/usr/share/i3blocks/openvpn
  55. instance=tun0
  56. interval=10
  57.  
  58. # Disk usage
  59. #
  60. # The directory defaults to $HOME if the instance is not specified.
  61. # The script may be called with a optional argument to set the alert
  62. # (defaults to 10 for 10%).
  63. [disk]
  64. label=
  65. #instance=/mnt/data
  66. interval=30
  67.  
  68. # Network interface monitoring
  69. #
  70. # If the instance is not specified, use the interface used for default route.
  71. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  72. # [iface]
  73. # instance=wlan0
  74. # color=#00FF00
  75. # interval=10
  76. # separator=false
  77.  
  78. # [wifi]
  79. # label=
  80. # instance=wlp8s0
  81. # interval=10
  82. # command=/usr/share/i3blocks/wifi
  83.  
  84. [network]
  85. label=
  86. instance=enp7s0
  87. interval=10
  88.  
  89. [bandwidth]
  90. instance=eth0
  91. # interval=5
  92.  
  93. # CPU usage
  94. #
  95. # The script may be called with -w and -c switches to specify thresholds,
  96. # see the script for details.
  97. [cpu_usage]
  98. label=
  99. interval=10
  100. min_width=100.00%
  101. #separator=false
  102.  
  103. #[load_average]
  104. #interval=10
  105.  
  106. # Battery indicator
  107. #
  108. # The battery instance defaults to 0.
  109. [battery]
  110. # label=BAT
  111. label=⚡
  112. #instance=1
  113. interval=30
  114.  
  115. # Date Time
  116. #
  117. [time]
  118. label=
  119. command=date '+%m/%d/%Y %H:%M'
  120. interval=1
  121.  
  122. # Generic media player support
  123. #
  124. # This displays "ARTIST - SONG" if a music is playing.
  125. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  126. #[mediaplayer]
  127. #instance=spotify
  128. #interval=5
  129. #signal=10
  130.  
  131. # OpenVPN support
  132. #
  133. # Support multiple VPN, with colors.
  134.  
  135. # Temperature
  136. #
  137. # Support multiple chips, though lm-sensors.
  138. # The script may be called with -w and -c switches to specify thresholds,
  139. # see the script for details.
  140. #[temperature]
  141. #label=TEMP
  142. #interval=10
  143.  
  144. # Key indicators
  145. #
  146. # Add the following bindings to i3 config file:
  147. #
  148. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  149. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  150. #[keyindicator]
  151. #instance=CAPS
  152. #interval=once
  153. #signal=11
  154.  
  155. #[keyindicator]
  156. #instance=NUM
  157. #interval=once
  158. #signal=11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement