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.

151 lines
2.7 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=25
  31. markup=pango
  32. # }}} Global properties #
  33. [time]
  34. command=date '+%H:%M.%a-%m-%d'
  35. interval=60
  36. color=#999999
  37. [load_average]
  38. label=🗠
  39. interval=5
  40. color=#990000
  41. # font=Hack 14
  42. [battery]
  43. label=⚡
  44. interval=60
  45. [wifi]
  46. label=🖧
  47. instance=wlp3s0
  48. interval=10
  49. [name]
  50. color=#cc5490
  51. interval=6000
  52. # unused blocks {{{ #
  53. # [memory]
  54. # label=
  55. # color=#006600
  56. # [cpu_usage -w 50 -c 80]
  57. # label=
  58. # min_width=CPU: 100.00%
  59. # color=#adeaea
  60. # Volume indicator
  61. #
  62. # The first parameter sets the step (and units to display)
  63. # The second parameter overrides the mixer selection
  64. # See the script for details.
  65. # [volume]
  66. # label=VOL
  67. # #label=♪
  68. # instance=Master
  69. # #instance=PCM
  70. # interval=once
  71. # signal=10
  72. # [memory]
  73. # label=SWAP
  74. # instance=swap
  75. # separator=false
  76. # interval=30
  77. # Disk usage
  78. #
  79. # The directory defaults to $HOME if the instance is not specified.
  80. # The script may be called with a optional argument to set the alert
  81. # (defaults to 10 for 10%).
  82. # [disk]
  83. # label=HOME
  84. # #instance=/mnt/data
  85. # interval=30
  86. # Network interface monitoring
  87. #
  88. # If the instance is not specified, use the interface used for default route.
  89. # The address can be forced to IPv4 or IPv6 with -4 or -6 switches.
  90. # [iface]
  91. # #instance=wlan0
  92. # color=#00FF00
  93. # interval=10
  94. # separator=false
  95. # [bandwidth]
  96. # #instance=eth0
  97. # interval=5
  98. # Generic media player support
  99. #
  100. # This displays "ARTIST - SONG" if a music is playing.
  101. # Supported players are: spotify, vlc, audacious, xmms2, mplayer, and others.
  102. #[mediaplayer]
  103. #instance=spotify
  104. #interval=5
  105. #signal=10
  106. # OpenVPN support
  107. #
  108. # Support multiple VPN, with colors.
  109. #[openvpn]
  110. #interval=20
  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. # Key indicators
  120. #
  121. # Add the following bindings to i3 config file:
  122. #
  123. # bindsym --release Caps_Lock exec pkill -SIGRTMIN+11 i3blocks
  124. # bindsym --release Num_Lock exec pkill -SIGRTMIN+11 i3blocks
  125. #[keyindicator]
  126. #instance=CAPS
  127. #interval=once
  128. #signal=11
  129. #[keyindicator]
  130. #instance=NUM
  131. #interval=once
  132. #signal=11
  133. # }}} unused blocks #