Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 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. # show google play music song
  32. [playmusic]
  33. command=getsong
  34. interval=10
  35. align=center
  36.  
  37. # test
  38. [test]
  39. full_text=testing123
  40.  
  41.  
  42. # Some Launchers
  43. [nautilus]
  44. full_text=
  45. command=echo  ; i3-msg exec nautilus
  46.  
  47. [spectacle]
  48. full_text=
  49. command=echo ; i3-msg exec spectacle
  50.  
  51. # Volume indicator
  52. #
  53. # The first parameter sets the step (and units to display)
  54. # The second parameter overrides the mixer selection
  55. # See the script for details.
  56. [volume]
  57. label=
  58. #label=♪
  59. instance=Master
  60. #instance=PCM
  61. interval=1
  62. signal=10
  63.  
  64. # Memory usage
  65. #
  66. # The type defaults to "mem" if the instance is not specified.
  67. [memory]
  68. label=MEM
  69. separator=false
  70. interval=30
  71.  
  72. [memory]
  73. label=SWAP
  74. instance=swap
  75. separator=false
  76. interval=30
  77.  
  78. # Disk usage
  79. #
  80. # The directory defaults to $HOME if the instance is not specified.
  81. # The script may be called with a optional argument to set the alert
  82. # (defaults to 10 for 10%).
  83. [disk]
  84. label=
  85. #instance=/mnt/data
  86. interval=30
  87.  
  88. # Network interface monitoring
  89. #
  90. # If the instance is not specified, use the interface used for default route.
  91. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  92. [iface]
  93. #instance=wlan0
  94. color=#b2f09a
  95. interval=10
  96. separator=false
  97.  
  98. #[wifi]
  99. #instance=wlp3s0
  100. #interval=10
  101. #separator=false
  102.  
  103. [bandwidth]
  104. #instance=eth0
  105. label=
  106. interval=5
  107. min_width=UD IN 1K OUT 1K
  108.  
  109. # CPU usage
  110. #
  111. # The script may be called with -w and -c switches to specify thresholds,
  112. # see the script for details.
  113. [cpu_usage]
  114. label=
  115. interval=10
  116. min_width=x100.00%
  117. #separator=false
  118.  
  119. #[load_average]
  120. #interval=10
  121.  
  122. # Battery indicator
  123. #
  124. # The battery instance defaults to 0.
  125. #[battery]
  126. #label=BAT
  127. #label=⚡
  128. #instance=1
  129. #interval=30
  130.  
  131. # Date Time
  132. #
  133. [time]
  134. command=date '+%Y-%m-%d %H:%M:%S'
  135. interval=5
  136.  
  137. # Generic media player support
  138. #
  139. # This displays "ARTIST - SONG" if a music is playing.
  140. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  141. [mediaplayer]
  142. instance=vlc
  143. interval=5
  144. signal=10
  145.  
  146. # OpenVPN support
  147. #
  148. # Support multiple VPN, with colors.
  149. #[openvpn]
  150. #interval=20
  151.  
  152. # Temperature
  153. #
  154. # Support multiple chips, though lm-sensors.
  155. # The script may be called with -w and -c switches to specify thresholds,
  156. # see the script for details.
  157. #[temperature]
  158. #label=TEMP
  159. #interval=10
  160.  
  161. # Key indicators
  162. #
  163. # Add the following bindings to i3 config file:
  164. #
  165. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  166. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  167. #[keyindicator]
  168. #instance=CAPS
  169. #interval=once
  170. #signal=11
  171.  
  172. #[keyindicator]
  173. #instance=NUM
  174. #interval=once
  175. #signal=11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement