Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2019
1,929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 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=5
  42. signal=10
  43.  
  44. # Memory usage
  45. #
  46. # The type defaults to "mem" if the instance is not specified.
  47. [memory]
  48. label=RAM FREE
  49. # I thought the stock label was a bit confusing (used vs free),
  50. # so I use this
  51. # I tried subbing _ for the space in the label. No change
  52. separator=false
  53. interval=30
  54.  
  55. # Disk usage
  56. #
  57. # The directory defaults to $HOME if the instance is not specified.
  58. # The script may be called with a optional argument to set the alert
  59. # (defaults to 10 for 10%).
  60. [disk]
  61. label=HOME
  62. #instance=/mnt/data
  63. interval=30
  64.  
  65. [wifi]
  66. # I needed to change this from default, whatever that was
  67. # (trial+error), so it would actually display my signal strength
  68. instance=wlp1s0
  69. interval=10
  70. separator=false
  71.  
  72. [bandwidth]
  73. #instance=eth0
  74. interval=5
  75.  
  76. # CPU usage
  77. #
  78. # The script may be called with -w and -c switches to specify thresholds,
  79. # see the script for details.
  80. [cpu_usage]
  81. label=CPU
  82. interval=10
  83. min_width=CPU: 100.00%
  84. #separator=false
  85.  
  86. #[load_average]
  87. #interval=10
  88.  
  89. # Battery indicator
  90. #
  91. # The battery instance defaults to 0.
  92. [battery]
  93. label=BAT
  94. #label=⚡
  95. #instance=1
  96. interval=15
  97.  
  98. # Date Time
  99. #
  100. [time]
  101. command=date '+%Y-%m-%d %H:%M'
  102. interval=60
  103.  
  104. # Generic media player support
  105. #
  106. # This displays "ARTIST - SONG" if a music is playing.
  107. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  108. #[mediaplayer]
  109. #instance=spotify
  110. #interval=5
  111. #signal=10
  112.  
  113. # OpenVPN support
  114. #
  115. # Support multiple VPN, with colors.
  116. #[openvpn]
  117. #interval=20
  118.  
  119. # Temperature
  120. #
  121. # Support multiple chips, though lm-sensors.
  122. # The script may be called with -w and -c switches to specify thresholds,
  123. # see the script for details.
  124. #[temperature]
  125. #label=TEMP
  126. #interval=10
  127.  
  128. # Key indicators
  129. #
  130. # Add the following bindings to i3 config file:
  131. #
  132. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  133. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  134. #[keyindicator]
  135. #instance=CAPS
  136. #interval=once
  137. #signal=11
  138.  
  139. #[keyindicator]
  140. #instance=NUM
  141. #interval=once
  142. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement