Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.37 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/lib/i3blocks/$BLOCK_NAME
  28. separator_block_width=30
  29. markup=none
  30.  
  31. [Info]
  32. label=
  33. command=echo -e BlackArch
  34. interval=30
  35. color=#5555FF
  36.  
  37. [GreyTeam]
  38. label=GreyTeam |
  39. color=#fe0803
  40. command=echo "Faciem"
  41. interval=5
  42.  
  43. # Volume indicator
  44. #
  45. # The first parameter sets the step (and units to display)
  46. # The second parameter overrides the mixer selection
  47. # See the script for details.
  48. [volume]
  49. label=
  50. color=#0708fe
  51. instance=Master
  52. #instance=PCM
  53. interval=once
  54. signal=10
  55.  
  56. # Memory usage
  57. #
  58. # The type defaults to "mem" if the instance is not specified.
  59. #[memory]
  60. #label=MEM
  61. #separator=false
  62. #interval=30
  63.  
  64. #[memory]
  65. #label=SWAP
  66. #instance=swap
  67. #separator=false
  68. #interval=30
  69.  
  70. # Disk usage
  71. #
  72. # The directory defaults to $HOME if the instance is not specified.
  73. # The script may be called with a optional argument to set the alert
  74. # (defaults to 10 for 10%).
  75. #[disk]
  76. #label=HOME
  77. #instance=/mnt/data
  78. #interval=30
  79.  
  80. # Network interface monitoring
  81. #
  82. # If the instance is not specified, use the interface used for default route.
  83. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  84. [iface]
  85. label=
  86. instance=wlp0s29u1u6
  87. color=#fff600
  88. interval=30
  89. separator=true
  90.  
  91. #[wifi]
  92. #label=
  93. #instance=wlp0s29u1u6
  94. #interval=5
  95. #separator=false
  96.  
  97. #[bandwidth]
  98. #label=
  99. #instance=wlp0s29u1u6
  100. #color=#00FF00
  101. #interval=5
  102.  
  103. # CPU usage
  104. #
  105. # The script may be called with -w and -c switches to specify thresholds,
  106. # see the script for details.
  107. #[cpu_usage]
  108. #label=CPU
  109. #interval=10
  110. #min_width=CPU: 100.00%
  111. #separator=false
  112.  
  113. #[load_average]
  114. #interval=10
  115.  
  116. # Battery indicator
  117. #
  118. # The battery instance defaults to 0.
  119. #[battery]
  120. #label=BAT
  121. #label=⚡
  122. #instance=1
  123. #interval=30
  124.  
  125. # OpenVPN support
  126. #
  127. # Support multiple VPN, with colors.
  128. [openvpn]
  129. label=
  130. color=#ff6d00
  131. interval=20
  132.  
  133. [kbd]
  134. interval=1
  135. command=xset -q|grep LED| awk '{ if (substr ($10,5,1) == 1) print "RU"; else print "EN"; }'
  136.  
  137. # Temperature
  138. #
  139. # Support multiple chips, though lm-sensors.
  140. # The script may be called with -w and -c switches to specify thresholds,
  141. # see the script for details.
  142. [temperature]
  143. label=
  144. color=#0cfe90
  145. interval=10
  146.  
  147. [language]
  148. label=
  149. color=#ff6d00
  150. interval=20
  151.  
  152. # Date Time
  153. #
  154. [time]
  155. label=
  156. command=date '+%a %Y-%m-%d %H:%M:%S'
  157. color=#00ff00
  158. interval=5
  159.  
  160.  
  161. # Generic media player support
  162. #
  163. # This displays "ARTIST - SONG" if a music is playing.
  164. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  165. #[mediaplayer]
  166. #instance=spotify
  167. #interval=5
  168. #signal=10
  169.  
  170. # Key indicators
  171. #
  172. # Add the following bindings to i3 config file:
  173. #
  174. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  175. # bindsym --release Num_Lock  exec pkill -SIGRTMIN+11 i3blocks
  176. #[keyindicator]
  177. #instance=CAPS
  178. #interval=once
  179. #signal=11
  180.  
  181. #[keyindicator]
  182. #instance=NUM
  183. #interval=once
  184. #signal=11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement