dotfiles

dotfiles for my system
git clone git://git.evenfri.xyz/dotfiles.git
Log | Files | Refs

polybar (1529B)


      1 [colors]
      2 bg = #cc111111
      3 fg = #eaeaea
      4 border = #ffffff
      5 background = #282A2E
      6 background-alt = #373B41
      7 foreground = #C5C8C6
      8 primary = #F0C674
      9 secondary = #8ABEB7
     10 alert = #A54242
     11 disabled = #707880
     12 
     13 [conf]
     14 # offset-y = 10
     15 offset-y = 0
     16 radius = 0
     17 border-size = 2
     18 height = 21
     19 font = "Tamben:size=12;4"
     20 
     21 [bar/center]
     22 # width = 75%
     23 width = 100%
     24 height = ${conf.height} 
     25 # offset-x = 12.5%
     26 offset-x = 0%
     27 offset-y = ${conf.offset-y}
     28 radius = ${conf.radius}
     29 wm-restack = bspwm
     30 
     31 background = ${colors.bg}
     32 foreground = ${colors.fg}
     33 
     34 border-size = ${conf.border-size}
     35 border-color = ${colors.border}
     36 
     37 override-redirect = false 
     38 
     39 modules-left = bspwm sep cpu
     40 modules-center = date
     41 modules-right = tray
     42 
     43 padding-left = 0
     44 padding-right = 1
     45 
     46 font-0 = ${conf.font}
     47 
     48 [module/sep]
     49 type = custom/text
     50 label = "   "
     51 
     52 [module/date]
     53 type = internal/date
     54 interval = 1
     55 date = %H:%M
     56 label = %date%
     57 
     58 [module/tray]
     59 type = internal/tray
     60 format = <tray>
     61 tray-spacing = 0
     62 tray-padding = 1
     63 tray-size = 80%
     64 
     65 [module/bspwm]
     66 type = internal/bspwm
     67 enable-click = true
     68 label-active = %name%
     69 label-active-background = ${colors.background-alt}
     70 label-active-padding = 1.0
     71 
     72 label-occupied = %name%
     73 label-occupied-padding = 1.0
     74 
     75 label-urgent = %name%
     76 label-urgent-background = ${colors.alert}
     77 label-urgent-padding = 1.0
     78 
     79 label-empty = %name%
     80 label-empty-foreground = ${colors.disabled}
     81 label-empty-padding = 1.0
     82 
     83 [module/xwindow]
     84 type = internal/xwindow
     85 label = %title:0:41...%
     86 
     87 [module/cpu]
     88 type = internal/cpu
     89 interval = 1
     90 format-prefix = "CPU "
     91 label = %percentage:2%%
     92