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.

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