You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
3.5 KiB
INI
178 lines
3.5 KiB
INI
2 years ago
|
[colors]
|
||
|
background = #1D1F21
|
||
|
background-alt = #373B41
|
||
|
foreground = #C5C8C6
|
||
|
primary = #F0C674
|
||
|
secondary = #8ABEB7
|
||
|
disabled = #707880
|
||
|
alert = #A54242
|
||
|
|
||
2 years ago
|
[section/base-bar]
|
||
|
; base bar settings
|
||
2 years ago
|
width = 100%
|
||
|
radius = 5
|
||
2 years ago
|
; font
|
||
|
font-0 = Hack Nerd Font;2
|
||
2 years ago
|
; seperator
|
||
|
separator = |
|
||
|
separator-foreground = ${colors.disabled}
|
||
|
module-margin = 1
|
||
|
padding = 2
|
||
2 years ago
|
; for multi monitor
|
||
2 years ago
|
monitor = ${env:MONITOR:}
|
||
2 years ago
|
; places bar at the top
|
||
2 years ago
|
bottom = false
|
||
2 years ago
|
fixed-center = true
|
||
2 years ago
|
; hybrid bg color, might go lighter grey
|
||
|
background = ${colors.background}
|
||
|
; hybrid fg color, might go lighter if I go lighter grey
|
||
|
foreground = ${colors.foreground}
|
||
|
|
||
2 years ago
|
[bar/thinkpad-bar]
|
||
|
; thinkpad bar conf
|
||
|
inherit = section/base-bar
|
||
|
height = 16pt
|
||
|
; modules
|
||
|
modules-left = xworkspaces xwindow-thinkpad weather-thinkpad
|
||
2 years ago
|
modules-right = battery pulseaudio memory cpu wlan date
|
||
|
|
||
2 years ago
|
[bar/desktop-bar]
|
||
|
; desktop bar config
|
||
|
height = 24pt
|
||
|
modules-left = xworkspaces xwindow-desktop
|
||
|
modules-center = weather-desktop
|
||
|
modules-right = pulseaudio memory cpu eth date
|
||
|
|
||
|
|
||
|
|
||
2 years ago
|
[module/xworkspaces]
|
||
|
type = internal/xworkspaces
|
||
|
|
||
|
label-active = %name%
|
||
|
label-active-background = ${colors.background-alt}
|
||
|
label-active-underline= ${colors.primary}
|
||
|
label-active-padding = 1
|
||
|
|
||
|
label-occupied = %name%
|
||
|
label-occupied-padding = 1
|
||
|
|
||
|
label-urgent = %name%
|
||
|
label-urgent-background = ${colors.alert}
|
||
|
label-urgent-padding = 1
|
||
|
|
||
|
label-empty = %name%
|
||
|
label-empty-foreground = ${colors.disabled}
|
||
|
label-empty-padding = 1
|
||
|
|
||
2 years ago
|
[module/xwindow-thinkpad]
|
||
|
; correct title size
|
||
2 years ago
|
type = internal/xwindow
|
||
|
label = %title:0:20:...%
|
||
|
|
||
2 years ago
|
[module/xwindow-desktop]
|
||
|
; correct title size
|
||
|
type = internal/xwindow
|
||
|
label = %title:0:40:...%
|
||
|
|
||
2 years ago
|
[module/pulseaudio]
|
||
|
type = internal/pulseaudio
|
||
|
|
||
|
format-volume-prefix = "VOL "
|
||
|
format-volume-prefix-foreground = ${colors.primary}
|
||
|
format-volume = <label-volume>
|
||
|
|
||
|
label-volume = %percentage%%
|
||
|
|
||
|
label-muted = muted
|
||
|
label-muted-foreground = ${colors.disabled}
|
||
|
|
||
2 years ago
|
[section/weather]
|
||
2 years ago
|
type = custom/script
|
||
|
|
||
|
interval = 30
|
||
2 years ago
|
; left click is forecast
|
||
|
click-left = weather -f
|
||
|
; middle click is nerdfont forecast
|
||
|
click-middle = weather -pf
|
||
|
; right click is radar
|
||
|
click-right = weather -r
|
||
|
|
||
|
[module/weather-thinkpad]
|
||
|
; no desc to shorten
|
||
|
inherit = section/weather
|
||
|
exec = weather -p
|
||
|
|
||
|
[module/weather-desktop]
|
||
|
; longer desc
|
||
|
inherit = section/weather
|
||
|
exec = weather -pd
|
||
|
|
||
2 years ago
|
|
||
|
[module/memory]
|
||
|
type = internal/memory
|
||
|
interval = 2
|
||
|
format-prefix = "RAM "
|
||
|
format-prefix-foreground = ${colors.primary}
|
||
2 years ago
|
label = %percentage_used%%
|
||
2 years ago
|
format = <label>
|
||
|
|
||
|
[module/battery]
|
||
|
type = internal/battery
|
||
|
|
||
|
poll-interval = 10
|
||
|
|
||
|
low-at = 10
|
||
|
|
||
2 years ago
|
format-discharging-prefix = "BAT "
|
||
|
format-discharging-prefix-foreground = ${colors.primary}
|
||
2 years ago
|
format-discharging = <label-discharging>
|
||
|
|
||
2 years ago
|
format-charging-prefix = "CHR "
|
||
|
format-charging-prefix-foreground = ${colors.primary}
|
||
|
format-charging = <label-charging>
|
||
|
|
||
|
time-format = %l:%M
|
||
2 years ago
|
|
||
2 years ago
|
label-charging = %percentage%%%time%
|
||
2 years ago
|
|
||
2 years ago
|
label-discharging = %percentage%%%time%
|
||
2 years ago
|
|
||
|
|
||
|
[module/cpu]
|
||
|
type = internal/cpu
|
||
|
interval = 2
|
||
|
format-prefix = "CPU "
|
||
|
format-prefix-foreground = ${colors.primary}
|
||
2 years ago
|
label = %percentage%%
|
||
2 years ago
|
|
||
|
[network-base]
|
||
|
type = internal/network
|
||
|
interval = 5
|
||
|
format-connected = <label-connected>
|
||
2 years ago
|
format-connected-foreground = ${colors.primary}
|
||
2 years ago
|
format-disconnected = <label-disconnected>
|
||
2 years ago
|
format-disconnected-foreground = ${colors.disabled}
|
||
2 years ago
|
|
||
|
[module/wlan]
|
||
|
inherit = network-base
|
||
|
interface-type = wireless
|
||
2 years ago
|
label-connected = %ifname%
|
||
2 years ago
|
|
||
|
[module/eth]
|
||
|
inherit = network-base
|
||
|
interface-type = wired
|
||
2 years ago
|
label-connected = %ifname% %linkspeed%
|
||
2 years ago
|
|
||
|
[module/date]
|
||
|
type = internal/date
|
||
|
|
||
2 years ago
|
date = %A, %b %d %l:%M %P
|
||
|
;date alt is for laptop
|
||
|
date-alt = %a, %b %d %l:%M %P
|
||
2 years ago
|
|
||
|
label = %date%
|
||
|
label-foreground = ${colors.primary}
|
||
|
|
||
|
[settings]
|
||
|
screenchange-reload = true
|