1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "layer": "bottom", // Allow dmenu to be on top
- "modules-left": [ "sway/workspaces", "sway/mode" ],
- "modules-center": [ "sway/window" ],
- "modules-right":
- [
- "tray",
- "mpd",
- "network",
- "memory",
- "cpu",
- "temperature",
- "backlight",
- "battery",
- "clock",
- "idle_inhibitor"
- ],
- "sway/workspaces": {"all-outputs": true},
- "mpd": {
- "format": "{stateIcon} {artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S})",
- "format-disconnected": "Disconnected",
- "format-stopped": "Stopped",
- "unknown-tag": "N/A",
- "interval": 2,
- "state-icons": {"paused": "", "playing": ""}
- },
- "idle_inhibitor": {
- "format": "{icon}",
- "format-icons": {"activated": "", "deactivated": ""}
- },
- "tray": {
- // "icon-size": 21,
- "spacing": 10
- },
- "clock": {"tooltip-format": "{:%A %d %B, %Y}", "format": "{:%Fw%wT%T%z}"},
- "cpu": {"format": "CPU: {total}%"},
- "memory": {"format": "RAM: {}%"},
- "temperature": {
- "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
- "critical-threshold": 62,
- // "format-critical": "{temperatureC}°C {icon}",
- "format": "{temperatureC}°C"
- },
- "backlight": {
- // "device": "acpi_video1",
- "format": "{percent}% {icon}",
- "format-icons": [ "", "" ]
- },
- "battery": {
- "states": {
- "good": 95,
- "warning": 30,
- "critical": 15
- },
- "format": "{time} {capacity}%",
- "format-full": "{capacity}% 🔋",
- "format-charging": "{capacity}% ☇",
- "format-plugged": "{capacity}% 🔌"
- },
- "battery#bat2": {"bat": "BAT2"},
- "network": {
- "format-wifi": "{ifname}: {essid} ({signalStrength}% @ {frequency:2}) {bandwidthUpOctets:3}⇅{bandwidthDownOctets:3}",
- "format-ethernet": "{ifname}: {bandwidthUpBits:3}⇅{bandwidthDownBits:3}",
- "format-linked": "{ifname} (No IPv4)",
- "format-disconnected": "Disconnected",
- }
- }
|