waybar/resources/config

160 lines
5.2 KiB
Plaintext
Raw Normal View History

2018-08-09 12:05:48 +02:00
{
// "layer": "top", // Waybar at top layer
// "position": "bottom", // Waybar position (top|bottom|left|right)
2019-04-24 12:37:24 +02:00
"height": 30, // Waybar height (to be removed for auto height)
2018-08-11 09:59:35 +02:00
// "width": 1280, // Waybar width
2021-10-20 11:23:57 +02:00
"spacing": 4, // Gaps between modules (4px)
2018-08-10 18:57:46 +02:00
// Choose the order of the modules
"modules-left": ["sway/workspaces", "sway/mode", "custom/media"],
2018-08-15 20:17:17 +02:00
"modules-center": ["sway/window"],
"modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "keyboard-state", "sway/language", "battery", "battery#bat2", "clock", "tray"],
2018-08-10 18:57:46 +02:00
// Modules configuration
// "sway/workspaces": {
// "disable-scroll": true,
// "all-outputs": true,
2018-09-18 20:58:11 +02:00
// "format": "{name}: {icon}",
// "format-icons": {
// "1": "",
// "2": "",
// "3": "",
// "4": "",
// "5": "",
// "urgent": "",
// "focused": "",
// "default": ""
// }
// },
"keyboard-state": {
2021-02-08 00:46:39 +01:00
"numlock": true,
"capslock": true,
2021-02-08 00:46:39 +01:00
"format": "{name} {icon}",
"format-icons": {
"locked": "",
"unlocked": ""
}
2021-02-08 00:46:39 +01:00
},
"sway/mode": {
2018-11-21 20:49:09 +01:00
"format": "<span style=\"italic\">{}</span>"
},
2019-04-18 14:19:46 +02:00
"mpd": {
"format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ",
2019-04-18 14:19:46 +02:00
"format-disconnected": "Disconnected ",
"format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ",
"unknown-tag": "N/A",
2019-04-18 14:19:46 +02:00
"interval": 2,
"consume-icons": {
"on": " "
},
"random-icons": {
"off": "<span color=\"#f53c3c\"></span> ",
"on": " "
},
"repeat-icons": {
"on": " "
},
"single-icons": {
"on": "1 "
},
"state-icons": {
"paused": "",
"playing": ""
},
"tooltip-format": "MPD (connected)",
"tooltip-format-disconnected": "MPD (disconnected)"
2019-04-18 17:55:02 +02:00
},
2019-02-17 15:27:54 +01:00
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "",
"deactivated": ""
}
},
2018-10-26 12:08:50 +02:00
"tray": {
2018-10-26 14:53:39 +02:00
// "icon-size": 21,
2018-10-26 12:08:50 +02:00
"spacing": 10
},
2018-08-27 01:36:25 +02:00
"clock": {
// "timezone": "America/New_York",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
2018-08-27 01:36:25 +02:00
"format-alt": "{:%Y-%m-%d}"
},
2018-08-09 13:30:11 +02:00
"cpu": {
"format": "{usage}% ",
"tooltip": false
2018-08-09 13:30:11 +02:00
},
"memory": {
"format": "{}% "
},
2019-03-13 13:18:08 +01:00
"temperature": {
2019-03-14 14:01:10 +01:00
// "thermal-zone": 2,
2019-03-13 13:18:08 +01:00
// "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
"critical-threshold": 80,
2019-05-13 11:31:05 +02:00
// "format-critical": "{temperatureC}°C {icon}",
"format": "{temperatureC}°C {icon}",
"format-icons": ["", "", ""]
2019-03-13 13:18:08 +01:00
},
"backlight": {
// "device": "acpi_video1",
"format": "{percent}% {icon}",
"format-icons": ["", ""]
},
2018-08-09 13:30:11 +02:00
"battery": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
2018-08-13 22:33:07 +02:00
"format": "{capacity}% {icon}",
2019-05-14 15:43:57 +02:00
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ",
2019-05-22 10:06:54 +02:00
"format-alt": "{time} {icon}",
// "format-good": "", // An empty format will hide the module
2018-11-02 17:39:00 +01:00
// "format-full": "",
2018-08-11 13:15:31 +02:00
"format-icons": ["", "", "", "", ""]
2018-08-09 16:38:24 +02:00
},
2018-10-25 17:30:26 +02:00
"battery#bat2": {
"bat": "BAT2"
},
2018-08-09 16:38:24 +02:00
"network": {
2019-05-16 11:22:22 +02:00
// "interface": "wlp2*", // (Optional) To force the use of this interface
2019-05-16 11:26:48 +02:00
"format-wifi": "{essid} ({signalStrength}%) ",
2021-09-09 20:12:20 +02:00
"format-ethernet": "{ipaddr}/{cidr} ",
"tooltip-format": "{ifname} via {gwaddr} ",
2019-05-16 11:22:22 +02:00
"format-linked": "{ifname} (No IP) ",
2019-05-21 17:44:46 +02:00
"format-disconnected": "Disconnected ⚠",
"format-alt": "{ifname}: {ipaddr}/{cidr}"
2018-08-09 23:55:38 +02:00
},
"pulseaudio": {
2019-05-14 09:24:06 +02:00
// "scroll-step": 1, // %, can be a float
2019-05-21 14:53:31 +02:00
"format": "{volume}% {icon} {format_source}",
2019-05-21 14:58:03 +02:00
"format-bluetooth": "{volume}% {icon} {format_source}",
"format-bluetooth-muted": " {icon} {format_source}",
2019-05-21 14:58:03 +02:00
"format-muted": " {format_source}",
2019-05-21 14:53:31 +02:00
"format-source": "{volume}% ",
"format-source-muted": "",
2018-08-29 23:50:41 +02:00
"format-icons": {
2020-02-04 12:16:50 +01:00
"headphone": "",
"hands-free": "",
2018-08-29 23:54:23 +02:00
"headset": "",
"phone": "",
"portable": "",
"car": "",
2019-05-14 15:43:57 +02:00
"default": ["", "", ""]
2018-11-01 09:27:00 +01:00
},
"on-click": "pavucontrol"
},
"custom/media": {
"format": "{icon} {}",
"return-type": "json",
2018-08-16 17:09:51 +02:00
"max-length": 40,
"format-icons": {
"spotify": "",
"default": "🎜"
},
"escape": true,
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
2018-08-09 13:30:11 +02:00
}
2019-02-17 15:27:54 +01:00
}
2021-02-08 00:46:39 +01:00