theme/format bar and sloppilly hard code colors for now
This commit is contained in:
parent
4f349726ea
commit
e148831181
2 changed files with 42 additions and 31 deletions
|
@ -3,17 +3,21 @@
|
||||||
command = "i3status-rs"
|
command = "i3status-rs"
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
background = "#282828ff"
|
background = "#04070A"
|
||||||
color = "#ffffffff"
|
tag_bg = "#04070A"
|
||||||
|
tag_inactive_bg = "#04070A"
|
||||||
|
tag_urgent_fg = "#04070A"
|
||||||
|
|
||||||
|
tag_fg = "#dff1f2"
|
||||||
|
tag_inactive_fg = "#dff1f2"
|
||||||
|
tag_focused_fg = "#dff1f2"
|
||||||
|
color = "#dff1f2"
|
||||||
|
|
||||||
separator = "#9a8a62ff"
|
separator = "#9a8a62ff"
|
||||||
tag_fg = "#d79921ff"
|
|
||||||
tag_bg = "#282828ff"
|
tag_focused_bg = "#3E758A"
|
||||||
tag_focused_fg = "#1d2021ff"
|
|
||||||
tag_focused_bg = "#689d68ff"
|
tag_urgent_bg = "#9C994A"
|
||||||
tag_urgent_fg = "#282828ff"
|
|
||||||
tag_urgent_bg = "#cc241dff"
|
|
||||||
tag_inactive_fg = "#d79921ff"
|
|
||||||
tag_inactive_bg = "#282828ff"
|
|
||||||
|
|
||||||
# The font and various sizes
|
# The font and various sizes
|
||||||
font = "monospace 10"
|
font = "monospace 10"
|
||||||
|
@ -32,7 +36,7 @@ blocks_overlap = 0.0
|
||||||
position = "top" # either "top" or "bottom"
|
position = "top" # either "top" or "bottom"
|
||||||
hide_inactive_tags = true
|
hide_inactive_tags = true
|
||||||
invert_touchpad_scrolling = true
|
invert_touchpad_scrolling = true
|
||||||
show_layout_name = true
|
show_layout_name = false
|
||||||
blend = true # whether tags/blocks colors should blend with bar's background
|
blend = true # whether tags/blocks colors should blend with bar's background
|
||||||
show_mode = true
|
show_mode = true
|
||||||
|
|
||||||
|
|
|
@ -1,34 +1,37 @@
|
||||||
icons_format = "{icon}"
|
icons_format = "{icon}"
|
||||||
|
|
||||||
[theme]
|
[theme]
|
||||||
theme = "solarized-dark"
|
theme = "native"
|
||||||
[theme.overrides]
|
|
||||||
idle_bg = "#123456"
|
|
||||||
idle_fg = "#abcdef"
|
|
||||||
|
|
||||||
[icons]
|
[icons]
|
||||||
icons = "awesome4"
|
icons = "awesome5"
|
||||||
[icons.overrides]
|
[icons.overrides]
|
||||||
bat = ["|E|", "|_|", "|=|", "|F|"]
|
# bat = ["| |", "|¼|", "|½|", "|¾|", "|X|"]
|
||||||
bat_charging = "|^| "
|
# bat_charging = "|^| "
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "cpu"
|
block = "cpu"
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "disk_space"
|
block = "memory"
|
||||||
path = "/"
|
format = " $icon $mem_used_percents.eng(w:2) $icon_swap $swap_used_percents.eng(w:2) "
|
||||||
info_type = "available"
|
interval = 5
|
||||||
alert_unit = "GB"
|
warning_mem = 70
|
||||||
interval = 20
|
critical_mem = 90
|
||||||
warning = 20.0
|
|
||||||
alert = 10.0
|
|
||||||
format = " $icon root: $available.eng(w:2) "
|
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "memory"
|
block = "net"
|
||||||
format = " $icon $mem_total_used_percents.eng(w:2) "
|
format = " $icon {$signal_strength} "
|
||||||
format_alt = " $icon_swap $swap_used_percents.eng(w:2) "
|
|
||||||
|
[[block]]
|
||||||
|
block = "bluetooth"
|
||||||
|
mac = "40:2C:F4:B6:D9:B2"
|
||||||
|
disconnected_format = ""
|
||||||
|
format = " $icon "
|
||||||
|
[block.battery_state]
|
||||||
|
"0..20" = "critical"
|
||||||
|
"21..70" = "warning"
|
||||||
|
"71..100" = "good"
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "sound"
|
block = "sound"
|
||||||
|
@ -36,8 +39,12 @@ block = "sound"
|
||||||
button = "left"
|
button = "left"
|
||||||
cmd = "pavucontrol"
|
cmd = "pavucontrol"
|
||||||
|
|
||||||
|
[[block]]
|
||||||
|
block = "battery"
|
||||||
|
format = "$icon $percentage "
|
||||||
|
missing_format = ""
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "time"
|
block = "time"
|
||||||
interval = 5
|
interval = 5
|
||||||
format = " $timestamp.datetime(f:'%a %d/%m %R') "
|
format = " $timestamp.datetime(f:'%a %m/%d %I:%M%p') "
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue