Advertisement
Guest User

Untitled

a guest
Dec 4th, 2018
2,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 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. #color=#77aaff
  30. markup=none
  31.  
  32. # Generic media player support
  33. #
  34. # This displays "ARTIST - SONG" if a music is playing.
  35. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  36. [mediaplayer]
  37. label=
  38. instance=spotify
  39. interval=5
  40. signal=10
  41.  
  42. # Volume indicator
  43. #
  44. # The first parameter sets the step (and units to display)
  45. # The second parameter overrides the mixer selection
  46. # See the script for details.
  47. [volume]
  48. #label=VOL
  49. label=
  50. instance=Master
  51. #instance=PCM
  52. interval=1
  53. signal=10
  54.  
  55. # Brightness indicator
  56. [brightness]
  57. #label=LIGHT
  58. label=
  59. command=light
  60. interval=1
  61.  
  62. # Memory usage
  63. #
  64. # The type defaults to "mem" if the instance is not specified.
  65. [memory]
  66. #label=MEM
  67. label=
  68. separator=false
  69. interval=30
  70.  
  71. [bandwidth]
  72. label=
  73. #instance=eth0
  74. interval=5
  75.  
  76. # Network interface monitoring
  77. #
  78. # If the instance is not specified, use the interface used for default route.
  79. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  80. [iface]
  81. #label=
  82. #instance=wlan0
  83. color=#00FF00
  84. interval=10
  85. separator=false
  86.  
  87.  
  88. # Battery indicator
  89. #
  90. # The battery instance defaults to 0.
  91. [battery]
  92. #label=BAT
  93. label=⚡
  94. #instance=1
  95. interval=30
  96.  
  97. # Date Time
  98. #
  99. [time]
  100. label=
  101. command=date '+%Y-%m-%d %H:%M:%S'
  102. interval=1
  103.  
  104.  
  105. # OpenVPN support
  106. #
  107. # Support multiple VPN, with colors.
  108. #[openvpn]
  109. #interval=20
  110.  
  111. # Temperature
  112. #
  113. # Support multiple chips, though lm-sensors.
  114. # The script may be called with -w and -c switches to specify thresholds,
  115. # see the script for details.
  116. #[temperature]
  117. #label=TEMP
  118. #interval=10
  119.  
  120. # Key indicators
  121. #
  122. # Add the following bindings to i3 config file:
  123. #
  124. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  125. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  126. #[keyindicator]
  127. #instance=CAPS
  128. #interval=once
  129. #signal=11
  130.  
  131. #[keyindicator]
  132. #instance=NUM
  133. #interval=once
  134. #signal=11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement