mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
132 lines
3.0 KiB
Plaintext
132 lines
3.0 KiB
Plaintext
// vim: ft=jsonc
|
|
{
|
|
"layer": "bottom", // Waybar at top layer
|
|
"height": 22, // Waybar height
|
|
"modules-left": ["sway/workspaces", "sway/mode", "custom/playerctl"],
|
|
"modules-center": ["sway/window"],
|
|
"modules-right": [
|
|
"idle_inhibitor",
|
|
"pulseaudio",
|
|
"custom/yay",
|
|
"network",
|
|
"temperature",
|
|
"battery",
|
|
"clock",
|
|
"tray"
|
|
],
|
|
// Modules configuration
|
|
"sway/workspaces": {
|
|
"disable-scroll": true,
|
|
"all-outputs": true,
|
|
"format": "{icon}",
|
|
"format-icons": {
|
|
"1": "",
|
|
"2": "",
|
|
"3": "",
|
|
"4": "",
|
|
"5": "",
|
|
"urgent": "",
|
|
"focused": "",
|
|
"default": ""
|
|
}
|
|
},
|
|
"sway/mode": {
|
|
"format": "<span style=\"italic\">{}</span>"
|
|
},
|
|
"idle_inhibitor": {
|
|
"tooltip": false,
|
|
"format": "{icon}",
|
|
"format-icons": {
|
|
"activated": "",
|
|
"deactivated": ""
|
|
}
|
|
},
|
|
"network": {
|
|
"format": "{ifname}",
|
|
"format-wifi": "{essid} ({signalStrength}%) ",
|
|
"format-ethernet": "{ipaddr} ",
|
|
"format-disconnected": "Disconnected ", //An empty format will hide the module.
|
|
"tooltip-format": "{ifname}",
|
|
"tooltip-format-wifi": "{ifname} {frequency}MHz ",
|
|
"tooltip-format-ethernet": "{ifname} ",
|
|
"tooltip-format-disconnected": "Disconnected"
|
|
},
|
|
"tray": {
|
|
// "icon-size": 21,
|
|
"spacing": 10
|
|
},
|
|
"clock": {
|
|
"tooltip": false,
|
|
"format": "{:%Y-%m-%d %H:%M} "
|
|
},
|
|
"cpu": {
|
|
"tooltip": false,
|
|
"format": "{usage}% "
|
|
},
|
|
"memory": {
|
|
"tooltip": false,
|
|
"format": "{}% "
|
|
},
|
|
"backlight": {
|
|
// "device": "acpi_video1",
|
|
"format": "{percent}% {icon}",
|
|
"format-icons": ["", ""]
|
|
},
|
|
"battery": {
|
|
"tooltip": false,
|
|
"states": {
|
|
// "good": 95,
|
|
"warning": 30,
|
|
"critical": 15
|
|
},
|
|
"format": "{capacity}% {icon}",
|
|
// "format-good": "", // An empty format will hide the module
|
|
// "format-full": "",
|
|
"format-icons": ["", "", "", "", ""]
|
|
},
|
|
"battery#bat2": {
|
|
"bat": "BAT2"
|
|
},
|
|
"pulseaudio": {
|
|
"tooltip": false,
|
|
//"scroll-step": 1,
|
|
"format": "{volume}% {icon}",
|
|
"format-bluetooth": "{volume}% ",
|
|
"format-muted": "",
|
|
"format-icons": {
|
|
"headphones": "",
|
|
"handsfree": "",
|
|
"headset": "",
|
|
"phone": "",
|
|
"portable": "",
|
|
"car": "",
|
|
"default": ["", ""]
|
|
},
|
|
"on-click": "pamixer --toggle-mute && ( pamixer --get-mute && echo 0 > $SWAYSOCK.wob ) || pamixer --get-volume > $SWAYSOCK.wob",
|
|
"on-click-right": "pavucontrol",
|
|
"on-scroll-up": "pamixer -ui 1 && pamixer --get-volume > $SWAYSOCK.wob",
|
|
"on-scroll-down": "pamixer -ud 1 && pamixer --get-volume > $SWAYSOCK.wob"
|
|
},
|
|
"custom/playerctl": {
|
|
"tooltip": false,
|
|
"format": "{}",
|
|
"exec": "$HOME/Scripts/metadata.sh",
|
|
"interval": 2,
|
|
"max-length": 40,
|
|
"on-click": "playerctl play-pause",
|
|
"on-click-right": "playerctl next",
|
|
"on-scroll-up": "playerctl volume 0.05+",
|
|
"on-scroll-down": "playerctl volume 0.05-"
|
|
},
|
|
"custom/yay":{
|
|
"tooltip": false,
|
|
"format": "{} ",
|
|
"exec": "yay -Qu | wc -l",
|
|
"interval": 300,
|
|
"on-click": "alacritty -e yay"
|
|
},
|
|
"temperature": {
|
|
"format": "{temperatureC}°C "
|
|
}
|
|
}
|