polybar: Slight refactor to config file

Since padding-left and padding-right will always be the same in this
case, I've gone ahead and made it simply "padding".

Since keys can use the values from other keys, some duplication in the
module sections can be avoided.
This commit is contained in:
Donovan Glover 2018-10-21 22:09:57 -04:00
parent 92adb1f1bb
commit b9ea57bc2d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -31,8 +31,7 @@ font-2 = "Font Awesome 5 Free:style=Solid:size=19"
font-3 = "Font Awesome 5 Free:style=Regular:size=19" font-3 = "Font Awesome 5 Free:style=Regular:size=19"
font-4 = "Font Awesome 5 Brands:style=Regular:size=19" font-4 = "Font Awesome 5 Brands:style=Regular:size=19"
padding-left = 2 padding = 2
padding-right = 2
module-margin = 1 module-margin = 1
[module/bspwm] [module/bspwm]
@ -82,27 +81,27 @@ ws-icon-9 = 10;十
type = internal/cpu type = internal/cpu
label =  %percentage%% label =  %percentage%%
format-foreground = ${color.background-alt} format-foreground = ${color.background-alt}
format-underline = ${color.background-alt} format-underline = ${self.format-foreground}
[module/ram] [module/ram]
type = internal/memory type = internal/memory
label =  %gb_used% label =  %gb_used%
format-foreground = ${color.background-alt} format-foreground = ${color.background-alt}
format-underline = ${color.background-alt} format-underline = ${self.format-foreground}
[module/date] [module/date]
type = internal/date type = internal/date
date =  %d.%m.%y date =  %d.%m.%y
#date = %B %d, %Y #date = %B %d, %Y
#date = %A #date = %A
format-foreground = ${color.background-alt} format-foreground = ${color.background-alt}
format-underline = ${color.background-alt} format-underline = ${self.format-foreground}
[module/time] [module/time]
type = internal/date type = internal/date
date =  %H:%M date =  %H:%M
format-foreground = ${color.background-alt} format-foreground = ${color.background-alt}
format-underline = ${color.background-alt} format-underline = ${self.format-foreground}
[module/battery] [module/battery]
type = internal/battery type = internal/battery
@ -120,14 +119,14 @@ label-song-maxlen = 100
label-song-ellipsis = true label-song-ellipsis = true
format-online =  <label-song> format-online =  <label-song>
format-offline-foreground = ${color.background-alt} format-offline-foreground = ${color.background-alt}
format-offline-underline = ${color.background-alt} format-offline-underline = ${self.format-offline-foreground}
format-online-foreground = ${color.background-alt} format-online-foreground = ${color.background-alt}
format-online-underline = ${color.background-alt} format-online-underline = ${self.format-online-foreground}
[module/volume] [module/volume]
type = internal/alsa type = internal/alsa
label-volume =  %percentage%% label-volume =  %percentage%%
format-volume-foreground = ${color.background-alt} format-volume-foreground = ${color.background-alt}
format-volume-underline = ${color.background-alt} format-volume-underline = ${self.format-volume-foreground}
; vim:ft=dosini ; vim:ft=dosini