feat(colors): change colorscheme + font + add calendar
This commit is contained in:
parent
f9e30792ac
commit
5b9291d1be
|
@ -17,42 +17,37 @@
|
|||
;==========================================================
|
||||
|
||||
[colors]
|
||||
background = #353F5D
|
||||
background-alt = #414D72
|
||||
foreground = #C8C7D1
|
||||
primary = #FFCC4D
|
||||
secondary = #FF7FA3
|
||||
alert = #A54242
|
||||
disabled = #707880
|
||||
background = #333333
|
||||
background-alt = #2E2E2E
|
||||
foreground = #8C8C8C
|
||||
primary = #93D4C5
|
||||
secondary = #E0A3B6
|
||||
alert = #E7A063
|
||||
disabled = #9DA991
|
||||
|
||||
[bar/example]
|
||||
width = 100%
|
||||
height = 18pt
|
||||
radius = 11t
|
||||
height = 22pt
|
||||
|
||||
; dpi = 96
|
||||
|
||||
background = ${colors.background}
|
||||
foreground = ${colors.foreground}
|
||||
|
||||
line-size = 1pt
|
||||
|
||||
border-size = 4pt
|
||||
border-color = #00000000
|
||||
line-size = 2pt
|
||||
|
||||
padding-left = 0
|
||||
padding-right = 1
|
||||
|
||||
module-margin = 1
|
||||
|
||||
separator = |
|
||||
separator-foreground = ${colors.disabled}
|
||||
|
||||
font-0 = "FiraCode Nerd Font:size=10;2"
|
||||
font-0 = "JetBrainsMonoNL Nerd Font:size=10;2"
|
||||
|
||||
modules-left = xworkspaces
|
||||
modules-center = xwindow
|
||||
modules-right = memory cpu pulseaudio xkeyboard wlan eth date battery powermenu
|
||||
modules-right = memory cpu pulseaudio xkeyboard wlan eth date calendar battery powermenu
|
||||
|
||||
cursor-click = pointer
|
||||
cursor-scroll = ns-resize
|
||||
|
@ -186,9 +181,9 @@ ramp-signal-5 =
|
|||
inherit = network-base
|
||||
interface-type = wired
|
||||
|
||||
format-connected = %{} <label-connected>
|
||||
format-connected = <label-connected>
|
||||
|
||||
format-connected-prefix =
|
||||
format-connected-prefix = " "
|
||||
format-connected-prefix-foreground = ${colors.primary}
|
||||
|
||||
label-connected = %local_ip%
|
||||
|
@ -199,11 +194,21 @@ type = internal/date
|
|||
interval = 1
|
||||
|
||||
date = %H:%M
|
||||
date-alt = %Y-%m-%d %H:%M:%S
|
||||
|
||||
label = %date%
|
||||
label-foreground = ${colors.primary}
|
||||
|
||||
[module/calendar]
|
||||
type = custom/script
|
||||
label = %output:0:15:...%
|
||||
format-prefix = " "
|
||||
format-prefix-foreground = ${colors.primary}
|
||||
format = <label>
|
||||
exec = date "+%d %b %Y"
|
||||
click-left = ~/.config/polybar/calendar curr
|
||||
scroll-up = ~/.config/polybar/calendar next
|
||||
scroll-down = ~/.config/polybar/calendar prev
|
||||
|
||||
[module/battery]
|
||||
type = internal/battery
|
||||
|
||||
|
@ -338,6 +343,6 @@ pseudo-transparency = true
|
|||
type = custom/text
|
||||
|
||||
content = " "
|
||||
content-foreground = ${colors.urgent}
|
||||
content-foreground = ${colors.primary}
|
||||
|
||||
click-left = ~/.config/rofi/power/launch.sh
|
||||
|
|
Loading…
Reference in New Issue