Advertisement
Guest User

i3blocks

a guest
Oct 19th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 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=~/.i3/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=
  38. instance=Master
  39. #instance=PCM
  40. interval=1
  41. signal=10
  42.  
  43. # CPU usage
  44. #
  45. # The script may be called with -w and -c switches to specify thresholds,
  46. # see the script for details.
  47.  
  48. [cpu]
  49. label=
  50. interval=1
  51. #min_width=CPU: 100.00%
  52. separator=true
  53.  
  54. # Memory usage
  55. #
  56. # The type defaults to "mem" if the instance is not specified.
  57. [memory]
  58. label=
  59. separator=true
  60. interval=1
  61.  
  62. # Disk usage
  63. #
  64. # The directory defaults to $HOME if the instance is not specified.
  65. # The script may be called with a optional argument to set the alert
  66. # (defaults to 10 for 10%).
  67. [disk]
  68. label=
  69. # instance=/home/
  70. interval=30
  71.  
  72. # Network interface monitoring
  73. #
  74. # If the instance is not specified, use the interface used for default route.
  75. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  76. [iface]
  77. instance=enp1s0
  78. label=
  79. color=#00FF00
  80. interval=10
  81. separator=true
  82.  
  83. [wifi]
  84. instance=wlp2s0
  85. label=
  86. # color=#00FF00
  87. interval=10
  88. separator=true
  89.  
  90. # Battery indicator
  91. #
  92. # The battery instance defaults to 0.
  93.  
  94. [test]
  95. # label=⚡
  96. interval=1
  97. # label=BAT
  98. # instance=1
  99.  
  100. # Date Time
  101. #
  102. [datetime]
  103. label=
  104. # command=time '%d.%m.%Y +%H:%M:%S'
  105. interval=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement