-
Notifications
You must be signed in to change notification settings - Fork 60
Focused
Jake Stanger edited this page Oct 15, 2022
·
13 revisions
Displays the title and/or icon of the currently focused window.
Type:
focused
Name | Type | Default | Description |
---|---|---|---|
show_icon |
boolean |
true |
Whether to show the app's icon |
show_title |
boolean |
true |
Whether to show the app's title |
icon_size |
integer |
32 |
Size of icon in pixels |
icon_theme |
string |
null |
GTK icon theme to use |
JSON
{
"end": [
{
"type": "focused",
"show_icon": true,
"show_title": true,
"icon_size": 32,
"icon_theme": "Paper"
}
]
}
TOML
[[end]]
type = "focused"
show_icon = true
show_title = true
icon_size = 32
icon_theme = "Paper"
YAML
end:
- type: "focused"
show_icon: true
show_title: true
icon_size: 32
icon_theme: "Paper"
Corn
{
end = [
{
type = "focused"
show_icon = true
show_title = true
icon_size = 32
icon_theme = "Paper"
}
]
}
Selector | Description |
---|---|
#focused |
Focused widget box |
#focused #icon |
App icon |
#focused #label |
App name |