Advertisement
Guest User

My i3bar config

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