blob: 8c45bc4d3d3230185eef4204eb284694eb196dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Opens the quickshell desktop drawer. A static button: no state, because
// waybar cannot see whether the drawer is open without the shell feeding it.
//
// An `image` module rather than a custom one: a custom module draws nothing at
// all when its format is empty, and the format has to be empty because the
// mark is an icon rather than text. `image` takes a path and needs no label.
//
// The path is the installed copy, which carries the udt accent: install.sh
// substitutes it, so the mark follows the scheme.
{
"image#launcher": {
"path": "$HOME/.config/waybar-udt/slackware.svg",
"size": 18,
"tooltip": false,
"on-click": "qs -p $HOME/Programming/GIT/quickshell/desktop ipc call drawer toggle"
}
}
|