ci(smoke): make custom modules emit text so the bar is not empty
The static custom modules used `exec: echo` (empty output), so the modules
rendered nothing and the bar strip was blank. Have exec print the label text
and use the default `{}` format.
This commit is contained in:
@@ -9,18 +9,15 @@
|
||||
"modules-center": ["custom/center"],
|
||||
"modules-right": ["custom/right"],
|
||||
"custom/left": {
|
||||
"format": "Waybar",
|
||||
"exec": "echo",
|
||||
"exec": "echo Waybar",
|
||||
"interval": "once"
|
||||
},
|
||||
"custom/center": {
|
||||
"format": "CI smoke test",
|
||||
"exec": "echo",
|
||||
"exec": "echo 'CI smoke test'",
|
||||
"interval": "once"
|
||||
},
|
||||
"custom/right": {
|
||||
"format": "12:34",
|
||||
"exec": "echo",
|
||||
"exec": "echo 12:34",
|
||||
"interval": "once"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user