Advertisement
Guest User

Untitled

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