From b6067c756998825bc9b40e6dd52ed862976abbd8 Mon Sep 17 00:00:00 2001 From: Till Smejkal Date: Thu, 25 Jun 2020 08:05:06 +0200 Subject: [PATCH] Fix and extend the wlr/taskbar example in the man page The example incorrectly used 'on-middle-click' as option although it should be 'on-click-middle'. Fix this and also add some other options. --- man/waybar-wlr-taskbar.5.scd | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/man/waybar-wlr-taskbar.5.scd b/man/waybar-wlr-taskbar.5.scd index cbce6e77..68cf02a7 100644 --- a/man/waybar-wlr-taskbar.5.scd +++ b/man/waybar-wlr-taskbar.5.scd @@ -87,10 +87,12 @@ Addressed by *wlr/taskbar* ``` "wlr/taskbar": { - "format": "{icon}", + "format": "{icon}", + "icon-size": 14, + "icon-theme": "Numix-Circle", "tooltip-format": "{title}", "on-click": "activate", - "on-middle-click": "close" + "on-click-middle": "close" } ```