Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

154 lines
2.8 KiB

  1. # properties {{{ #
  2. # i3blocks config file
  3. #
  4. # Please see man i3blocks for a complete reference!
  5. # The man page is also hosted at http://vivien.github.io/i3blocks
  6. #
  7. # List of valid properties:
  8. #
  9. # align
  10. # color
  11. # command
  12. # full_text
  13. # instance
  14. # interval
  15. # label
  16. # min_width
  17. # name
  18. # separator
  19. # separator_block_width
  20. # short_text
  21. # signal
  22. # urgent
  23. # }}} properties #
  24. # Global properties {{{ #
  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. align=center
  28. command=/usr/share/i3blocks/$BLOCK_NAME
  29. separator=true
  30. separator_block_width=20
  31. interval=5
  32. markup=pango
  33. # }}} Global properties #
  34. [time]
  35. command=date '+%H:%M.%a-%m-%d'
  36. interval=30
  37. [load_average]
  38. label=
  39. color=#990000
  40. # font=Hack 14
  41. [name]
  42. color=#D1EEEE
  43. # unused blocks {{{ #
  44. # [memory]
  45. # label=
  46. # color=#006600
  47. # [cpu_usage -w 50 -c 80]
  48. # label=
  49. # min_width=CPU: 100.00%
  50. # color=#adeaea
  51. # Volume indicator
  52. #
  53. # The first parameter sets the step (and units to display)
  54. # The second parameter overrides the mixer selection
  55. # See the script for details.
  56. # [volume]
  57. # label=VOL
  58. # #label=♪
  59. # instance=Master
  60. # #instance=PCM
  61. # interval=once
  62. # signal=10
  63. # [memory]
  64. # label=SWAP
  65. # instance=swap
  66. # separator=false
  67. # interval=30
  68. # Disk usage
  69. #
  70. # The directory defaults to $HOME if the instance is not specified.
  71. # The script may be called with a optional argument to set the alert
  72. # (defaults to 10 for 10%).
  73. # [disk]
  74. # label=HOME
  75. # #instance=/mnt/data
  76. # interval=30
  77. # Network interface monitoring
  78. #
  79. # If the instance is not specified, use the interface used for default route.
  80. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  81. # [iface]
  82. # #instance=wlan0
  83. # color=#00FF00
  84. # interval=10
  85. # separator=false
  86. # [wifi]
  87. # #instance=wlp3s0
  88. # interval=10
  89. # separator=false
  90. # [bandwidth]
  91. # #instance=eth0
  92. # interval=5
  93. # Battery indicator
  94. #
  95. # The battery instance defaults to 0.
  96. # [battery]
  97. # label=BAT
  98. # #label=⚡
  99. # #instance=1
  100. # interval=30
  101. # Generic media player support
  102. #
  103. # This displays "ARTIST - SONG" if a music is playing.
  104. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  105. #[mediaplayer]
  106. #instance=spotify
  107. #interval=5
  108. #signal=10
  109. # OpenVPN support
  110. #
  111. # Support multiple VPN, with colors.
  112. #[openvpn]
  113. #interval=20
  114. # Temperature
  115. #
  116. # Support multiple chips, though lm-sensors.
  117. # The script may be called with -w and -c switches to specify thresholds,
  118. # see the script for details.
  119. #[temperature]
  120. #label=TEMP
  121. #interval=10
  122. # Key indicators
  123. #
  124. # Add the following bindings to i3 config file:
  125. #
  126. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  127. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  128. #[keyindicator]
  129. #instance=CAPS
  130. #interval=once
  131. #signal=11
  132. #[keyindicator]
  133. #instance=NUM
  134. #interval=once
  135. #signal=11
  136. # }}} unused blocks #