Advertisement
BlueManCZ

py3status.conf

Apr 4th, 2020
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. # py3status configuration file
  2. # https://github.com/ultrabug/py3status
  3.  
  4. general {
  5. colors = true
  6. color_good = "#00FF00"
  7. color_bad = "#FF0000"
  8. color_degraded = "#FFFF00"
  9. interval = 2
  10. }
  11.  
  12. order += "volume Master"
  13. order += "cpu_usage"
  14. order += "lm_sensors"
  15. order += "external_script 0"
  16. order += "disk /"
  17. order += "ethernet eth0"
  18. order += "tztime local"
  19. order += "time"
  20. order += "whoami"
  21.  
  22. volume Master {
  23. format = " %volume "
  24. format_muted = " %volume "
  25. device = "default"
  26. mixer = "Master"
  27. mixer_idx = 0
  28. color = "#00FF00"
  29. }
  30.  
  31. cpu_usage {
  32. format = "  %usage"
  33. color = "#00FF00"
  34. }
  35.  
  36. lm_sensors {
  37. format_chip = '[\?if=name=via686a-isa-600 CPU ]'
  38. format_chip += '[\?if=name=nouveau-pci-050 GPU ]'
  39. format_chip += '{format_sensor}'
  40. format_sensor = '\?color=auto.input  {input}°C'
  41. sensors = ['temp1']
  42. }
  43.  
  44. external_script 0 {
  45. format = "  {output}"
  46. script_path = "~/bash-scripts/ram_full.sh"
  47. }
  48.  
  49. disk "/" {
  50. format = "  %avail"
  51. }
  52.  
  53. ethernet eth0 {
  54. format_up = "  %ip"
  55. format_down = "  No conection"
  56. }
  57.  
  58. tztime local {
  59. format = "  %d.%m.%Y"
  60. }
  61.  
  62. time {
  63. format = "  %H:%M:%S"
  64. }
  65.  
  66. whoami {
  67. format = "  {username}"
  68. color = "#8888FF"
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement