Advertisement
Guest User

Untitled

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