Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. ; ██████ ██████ ██ ██ ██ ██████ █████ ██████
  2. ; ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
  3. ; ██████ ██ ██ ██ ████ ██████ ███████ ██████
  4. ; ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
  5. ; ██ ██████ ███████ ██ ██████ ██ ██ ██ ██
  6.  
  7. [colors]
  8. background = #282C34
  9. foreground = #ABB2BF
  10. foreground-alt= #528BFF
  11. black = #000000
  12. red = #E06C75
  13. green = #98C379
  14. orange = #D19A66
  15. blue = #61AEEE
  16. magenta = #C678DD
  17. cyan = #56B6C2
  18. lightgray = #ABB2BF
  19. darkgray = #5C6370
  20. white = #FFFFFF
  21.  
  22. [global/wm]
  23. margin-top = 0
  24. margin-bottom = 0
  25.  
  26. [bar/mybar]
  27. monitor = HDMI-0
  28.  
  29. width = 100%
  30. height = 18
  31.  
  32. font-0 = monospace:size=8:weight=bold
  33. font-1 = FontAwesome:size=11
  34.  
  35. background = ${colors.background}
  36. foreground = ${colors.foreground}
  37.  
  38. tray-position = center
  39. tray-maxsize = 16
  40.  
  41. modules-left = i3 xwindow
  42. modules-center =
  43. modules-right = keyboard volume wired-network calendar clock
  44.  
  45. scroll-up = i3wm-wsnext
  46. scroll-down = i3wm-wsprev
  47.  
  48. [module/xwindow]
  49. type = internal/xwindow
  50.  
  51. label = %title%
  52. label-maxlen = 75
  53.  
  54. format-foreground = ${colors.background}
  55. format-background = ${colors.magenta}
  56. format-prefix = " "
  57. format-suffix = " "
  58.  
  59. format-margin = 1
  60.  
  61. [module/keyboard]
  62. type = internal/xkeyboard
  63.  
  64. format =  <label-layout>
  65. format-foreground = ${colors.magenta}
  66. format-label-prefix= " "
  67.  
  68. [module/clock]
  69. type = internal/date
  70.  
  71. interval = 1.0
  72.  
  73. time = %H:%M:%S
  74.  
  75. format =  <label>
  76. format-prefix = " "
  77. format-foreground = ${colors.orange}
  78.  
  79. label = %time%
  80.  
  81. [module/calendar]
  82. type = internal/date
  83.  
  84. interval = 1.0
  85.  
  86. date = %d/%m/%y
  87.  
  88. format = %{T1} <label>
  89. format-foreground = ${colors.orange}
  90. format-prefix = " "
  91.  
  92. label = %date%
  93.  
  94. [module/volume]
  95. type = internal/volume
  96. master-mixer = Master
  97.  
  98. format-volume-foreground = ${colors.green}
  99.  
  100. format-volume = %{T1} <label-volume>
  101.  
  102. format-volume-prefix = " "
  103. format-muted-prefix = " "
  104.  
  105. label-muted =  [muted]
  106. label-muted-foreground = ${colors.red}
  107. label-muted-font = 1
  108.  
  109. [module/i3]
  110. type = internal/i3
  111. format = <label-state> <label-mode>
  112.  
  113. index-sort = true
  114. wrapping-scroll = true
  115.  
  116. label-focused = %index%
  117. label-focused-foreground = ${colors.background}
  118. label-focused-background = ${colors.foreground-alt}
  119. label-focused-padding = 1
  120.  
  121. label-unfocused = %index%
  122. label-unfocused-padding = 1
  123.  
  124. label-urgent = %index%
  125. label-urgent-foreground = ${colors.background}
  126. label-urgent-background = ${colors.red}
  127. label-urgent-padding = 1
  128.  
  129. label-visible = %index%
  130. label-visible-padding = 1
  131.  
  132. [module/wired-network]
  133. type = internal/network
  134. interface = enp4s0f2
  135.  
  136. format-connected-prefix = " "
  137. format-disconnected-prefix = " "
  138.  
  139. format-connected = <label-connected>
  140.  
  141. format-disconnected = <label-disconnected>
  142.  
  143. label-connected =  %local_ip%
  144. label-connected-foreground = ${colors.foreground-alt}
  145.  
  146. label-disconnected =  [not plugged]
  147. label-disconnected-foreground = ${colors.red}
  148.  
  149. ; vim:ft=dosini
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement