waybar/resources/config

68 lines
2.0 KiB
Plaintext
Raw Normal View History

2018-08-09 12:05:48 +02:00
{
"layer": "top", // Waybar at top layer
2018-08-10 18:57:46 +02:00
// "position": "bottom", // Waybar at the bottom of your screen
2018-08-11 09:59:35 +02:00
// "height": 30, // Waybar height
// "width": 1280, // Waybar width
2018-08-10 18:57:46 +02:00
// Choose the order of the modules
2018-08-15 20:17:17 +02:00
"modules-left": ["sway/workspaces", "custom/spotify"],
"modules-center": ["sway/window"],
"modules-right": ["pulseaudio", "network", "cpu", "memory", "battery", "clock", "tray"],
2018-08-10 18:57:46 +02:00
// Modules configuration
// "sway/workspaces": {
// "disable-scroll": true,
// "all-outputs": true,
// "format-icons": {
// "1": "",
// "2": "",
// "3": "",
// "4": "",
// "5": "",
// "urgent": "",
// "focused": "",
// "default": ""
// }
// },
"sway/window": {
"max-length": 50
},
2018-08-27 01:36:25 +02:00
"clock": {
"format-alt": "{:%Y-%m-%d}"
},
2018-08-09 13:30:11 +02:00
"cpu": {
"format": "{}% "
},
"memory": {
"format": "{}% "
},
"battery": {
2018-08-13 22:33:07 +02:00
"format": "{capacity}% {icon}",
2018-08-11 13:15:31 +02:00
"format-icons": ["", "", "", "", ""]
2018-08-09 16:38:24 +02:00
},
"network": {
2018-08-17 14:24:00 +02:00
// "interface": "wlp2s0", // (Optional) To force the use of this interface
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ifname} ",
"format-disconnected": "Disconnected ⚠"
2018-08-09 23:55:38 +02:00
},
"pulseaudio": {
2018-08-13 22:33:07 +02:00
"format": "{volume}% {icon}",
2018-08-30 00:04:43 +02:00
"format-bluetooth": "{volume}% {icon}",
2018-08-13 22:33:07 +02:00
"format-muted": "",
2018-08-29 23:50:41 +02:00
"format-icons": {
"headphones": "",
"handsfree": "",
2018-08-29 23:54:23 +02:00
"headset": "",
"phone": "",
"portable": "",
"car": "",
2018-08-29 23:50:41 +02:00
"default": ["", ""]
}
},
"custom/spotify": {
"format": " {}",
2018-08-16 17:09:51 +02:00
"max-length": 40,
2018-08-26 21:47:35 +02:00
"exec": "$HOME/.config/waybar/mediaplayer.sh", // Script in resources folder
2018-08-18 17:27:40 +02:00
"exec-if": "pgrep spotify"
2018-08-09 13:30:11 +02:00
}
2018-08-09 12:05:48 +02:00
}