Advertisement
Guest User

Untitled

a guest
May 26th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. ;=====================================================
  2. ;
  3. ; To learn more about how to configure Polybar
  4. ; go to https://github.com/jaagr/polybar
  5. ;
  6. ; The README contains alot of information
  7. ;
  8. ;=====================================================
  9.  
  10. [colors]
  11. background = #000000
  12. foreground = #90ee90
  13.  
  14. [bar/statusbar]
  15. monitor = LVDS-0
  16. width = 100%
  17. height = 18
  18. radius = 0
  19. fixed-center = false
  20.  
  21. background = ${colors.background}
  22. foreground = ${colors.foreground}
  23.  
  24. separator = " "
  25.  
  26. line-size = 1
  27. line-color = #8090ee90
  28.  
  29. border-size = 1
  30. border-color = #8090ee90
  31.  
  32. padding-left = 1
  33. padding-right = 1
  34.  
  35. module-margin-left = 0
  36. module-margin-right = 0
  37.  
  38. font-0 = xos4 Terminus:pixelsize=14
  39.  
  40. modules-left = getweather getsunset getdiskspace getcoretemperature getmemload getapinfo getbattstat getvolume
  41. modules-center =
  42. modules-right = xkeyboard
  43.  
  44. ;tray-position = right
  45. ;tray-padding = 2
  46. ;tray-transparent = true
  47. ;tray-background = #0063ff
  48.  
  49. cursor-click = pointer
  50. cursor-scroll = ns-resize
  51.  
  52. ![module/xwindow]
  53. !type = internal/xwindow
  54. !label = %title:0:30:...%
  55.  
  56. [module/xkeyboard]
  57. type = internal/xkeyboard
  58. format-padding = 1
  59. blacklist-0 = num lock
  60. blacklist-1 = scroll lock
  61. blacklist-2 = caps lock
  62.  
  63. label-layout = %layout%
  64. label-layout-underline = #ff0000
  65.  
  66. !label-indicator-padding = 1
  67. !label-indicator-margin = 1
  68. !label-indicator-background = ${colors.secondary}
  69. !label-indicator-underline = ${colors.secondary}
  70.  
  71. [module/getweather]
  72. type = custom/script
  73. exec = ~/.bin/getweather
  74. interval = 3600
  75. format-underline = #6A5ACD
  76. format-padding = 1
  77.  
  78. [module/getsunset]
  79. type = custom/script
  80. exec = ~/.bin/getsunset.py
  81. interval = 3600
  82. format-underline = #FAEEDD
  83. format-padding = 1
  84.  
  85. #[module/getnewports]
  86. #type = custom/script
  87. #exec = ~/.bin/getstat get_new_ports Обн:
  88. #interval = 3600
  89. #format-underline = #FFDC33
  90. #tail = true
  91. #format-padding = 1
  92.  
  93. [module/getdiskspace]
  94. type = custom/script
  95. exec = ~/.bin/getstat get_diskspace / /usr/home
  96. interval = 30
  97. format-underline = #A7FC00
  98. format-padding = 1
  99.  
  100. [module/getcoretemperature]
  101. type = custom/script
  102. exec = ~/.bin/getstat get_core_temperature ЦП:
  103. interval = 10
  104. format-underline = #42AAFF
  105. format-padding = 1
  106. tail = true
  107.  
  108. [module/getmemload]
  109. type = custom/script
  110. exec = ~/.bin/getstat get_memload ОЗУ:
  111. interval = 10
  112. format-underline = #F5F5F5
  113. format-padding = 1
  114.  
  115. [module/getapinfo]
  116. type = custom/script
  117. exec = ~/.bin/getstat get_ap_info ТД:
  118. interval = 10
  119. format-underline = #CC5500
  120. format-padding = 1
  121.  
  122. [module/getvolume]
  123. type = custom/script
  124. exec = ~/.bin/getstat get_volume Звук:
  125. interval = 5
  126. format-underline = #BDDA57
  127. format-padding = 1
  128.  
  129. [module/getbattstat]
  130. type = custom/script
  131. exec = ~/.bin/getstat get_batt_stat Бат:
  132. interval = 10
  133. format-underline = #F984E5
  134. format-padding = 1
  135.  
  136. [settings]
  137. screenchange-reload = true
  138. ;compositing-background = xor
  139. ;compositing-background = screen
  140. ;compositing-foreground = source
  141. ;compositing-border = over
  142.  
  143. [global/wm]
  144. margin-top = 5
  145. margin-bottom = 5
  146.  
  147. ; vim:ft=dosini
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement