Advertisement
Guest User

i3blocks config

a guest
Oct 15th, 2016
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 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. # background
  11. # border
  12. # command
  13. # full_text
  14. # instance
  15. # interval
  16. # label
  17. # min_width
  18. # name
  19. # separator
  20. # separator_block_width
  21. # short_text
  22. # signal
  23. # urgent
  24.  
  25. # Global properties
  26. #
  27. # The top properties below are applied to every block, but can be overridden.
  28. # Each block command defaults to the script name to avoid boilerplate.
  29. command=$SCRIPT_DIR/$BLOCK_NAME
  30. separator_block_width=15
  31. markup=none
  32.  
  33. separator_block_width=14
  34.  
  35. [Weather]
  36. command=~/.i3/IconicWeather.sh "97304"
  37. interval=1800
  38. color=#e97ac8
  39.  
  40.  
  41. [mail]
  42. label=ïƒ
  43. command=~/.i3/.mail.sh.x
  44. interval=100
  45. color=#7F00FF
  46.  
  47. [disk-root]
  48. label=î €:
  49. command=/usr/lib/i3blocks/disk /
  50. interval=30
  51. color=#1793D1
  52.  
  53.  
  54. [disk-home]
  55. label=:
  56. command=/usr/lib/i3blocks/disk $HOME
  57. interval=30
  58. color=#859900
  59.  
  60. [ssid]
  61. label=
  62. command=echo "$(iw dev wlo1 link | grep SSID | cut -d " " -f 2-)"
  63. color=#d33682
  64. interval=5
  65.  
  66.  
  67.  
  68. [wireless]
  69. instance=wlo1
  70. command=/usr/lib/i3blocks/iface
  71. color=#00FF00
  72. interval=10
  73.  
  74. [strength]
  75. command=echo "$(iw dev wlo1 link | grep signal | cut -d " " -f 2-)"
  76. interval=10
  77. color=#cb4b16
  78.  
  79. [temp]
  80. label=
  81. command=echo "$(sensors coretemp-isa-0000 | awk '/Physical/ {print $4}')"
  82. interval=10
  83. color=#b58900
  84.  
  85. [battery]
  86.  
  87. command=~/.i3/battery BAT0
  88.  
  89. interval=30
  90.  
  91. [load]
  92. label=
  93. command=/usr/lib/i3blocks/load_average
  94. interval=10
  95. color=#6c71c4
  96.  
  97.  
  98. [volume]
  99. label=
  100. command=/usr/lib/i3blocks/volume
  101. interval=2
  102. signal=10
  103. color=#d70a53
  104.  
  105.  
  106. [time]
  107. label=
  108. command=date '+%a %m-%d-%y %l:%M:%S %p'
  109. interval=5
  110. color=#50C878
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement