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.

150 lines
2.7 KiB

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