Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. # i3status configuration file.
  2. # see "man i3status" for documentation.
  3.  
  4. # It is important that this file is edited as UTF-8.
  5. # The following line should contain a sharp s:
  6. # ß
  7. # If the above line is not correctly displayed, fix your editor first!
  8.  
  9. order += "lm_sensors"
  10. order += "coin_market"
  11. order += "disk /"
  12. order += "wifi"
  13. order += "sysdata"
  14. order += "battery_level"
  15. order += "volume_status"
  16. order += "tztime local_date"
  17. order += "tztime local"
  18. order += "tztime india"
  19.  
  20. lm_sensors {
  21. format_chip = '{format_sensor}'
  22. format_sensor = '[\?if=name=core_0 CPU1 ]'
  23. format_sensor += '[\?if=name=core_1 CPU2 ]'
  24. format_sensor += '[\?color=auto.input {input}°C]'
  25. sensors = ['core*', 'temp*']
  26. chips = ['coretemp-isa-0000']
  27. cache_timeout = 3
  28. }
  29.  
  30. coin_market {
  31. cache_timeout = 10
  32. }
  33.  
  34. battery_level {
  35. format = "Bat: {percent}% {time_remaining}"
  36. notify_low_level = "50"
  37. }
  38.  
  39. volume_status {
  40. cache_timeout = 0.1
  41. }
  42.  
  43. wifi {
  44. format = 'W: {signal_percent} {ssid}|W: down'
  45. }
  46.  
  47. tztime local_date {
  48. format = "Date: %m/%d/%y"
  49. }
  50.  
  51. tztime local {
  52. format = "DUB: %H:%M"
  53. }
  54.  
  55. tztime india {
  56. format = "IND: %H:%M"
  57. timezone = "Asia/Kolkata"
  58. }
  59.  
  60. disk "/" {
  61. format = " Disk: %free "
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement