87 lines
2.0 KiB
TOML
87 lines
2.0 KiB
TOML
# Advanced i3status-rust configuration
|
|
# Based on the i3xrocks blocks from your i3 setup
|
|
|
|
[[block]]
|
|
block = "net"
|
|
format = " $icon {$signal_strength $ssid $frequency|Wired connection} via $device "
|
|
interval = 1
|
|
|
|
[[block]]
|
|
block = "cpu"
|
|
interval = 5
|
|
format = " $icon $utilization "
|
|
format_alt = " $icon $frequency{ $boost} "
|
|
|
|
[[block]]
|
|
block = "memory"
|
|
format = " $icon $mem_used_percents.eng(w:2) "
|
|
interval = 10
|
|
|
|
[[block]]
|
|
block = "battery"
|
|
device = "BAT0"
|
|
format = " $icon $percentage $time "
|
|
interval = 10
|
|
missing_format = ""
|
|
|
|
[[block]]
|
|
block = "sound"
|
|
format = " $icon $volume "
|
|
click = [
|
|
{button = "left", cmd = "pavucontrol"},
|
|
{button = "right", cmd = "pactl set-sink-mute @DEFAULT_SINK@ toggle"},
|
|
]
|
|
|
|
[[block]]
|
|
block = "bluetooth"
|
|
mac = ""
|
|
format = " $icon $label "
|
|
disconnected_format = ""
|
|
|
|
# Custom Bluetooth connected devices block
|
|
[[block]]
|
|
block = "custom"
|
|
command = "~/.config/sway/bluetooth-sway.sh"
|
|
format = " $text "
|
|
interval = 10
|
|
click = [
|
|
{button = "left", update = true},
|
|
{button = "right", update = true},
|
|
]
|
|
|
|
# Custom weather block using your wttr.in script
|
|
# [[block]]
|
|
# block = "custom"
|
|
# command = "~/.config/sway/weather-sway.sh"
|
|
# format = " 🌤 $text "
|
|
# interval = 1800
|
|
# click = [
|
|
# {button = "left", update = true},
|
|
# {button = "right", update = true},
|
|
# ]
|
|
|
|
# Alternative: Weather with custom location
|
|
# Uncomment and modify this block if you want weather for a different city
|
|
[[block]]
|
|
block = "custom"
|
|
command = "~/.config/sway/weather-sway.sh"
|
|
format = "$text"
|
|
interval = 1800
|
|
|
|
# Alternative: Weather with different format
|
|
# Format options: https://github.com/chubin/wttr.in
|
|
# 1 = current conditions, 2 = current + today, 3 = current + today + tomorrow, 4 = current + 3 days
|
|
# [[block]]
|
|
# block = "custom"
|
|
# command = "weather_format='2' ~/.config/sway/weather-sway.sh"
|
|
# format = " 📅 $text "
|
|
# interval = 1800
|
|
|
|
[[block]]
|
|
block = "time"
|
|
format = " $icon $timestamp.datetime(f:'%Y-%m-%d %H:%M:%S') "
|
|
interval = 1
|
|
|
|
[icons]
|
|
icons = "awesome4"
|