Advertisement
jrswab

i3bocks.config

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