mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-09 17:54:22 +02:00
binding: update client information
Some properties were missing and some other did not exist.
This commit is contained in:
parent
ca4b595e49
commit
4baa928dbc
1 changed files with 5 additions and 4 deletions
|
@ -19,13 +19,14 @@ local function client_info()
|
|||
|
||||
local inf = {
|
||||
"name", "icon_name", "type", "class", "role", "instance", "pid",
|
||||
"icon_name", "skip_taskbar", "id", "group_id", "leader_id", "machine",
|
||||
"screen", "hide", "minimize", "size_hints_honor", "titlebar", "urgent",
|
||||
"focus", "opacity", "ontop", "above", "below", "fullscreen", "transient_for"
|
||||
"icon_name", "skip_taskbar", "id", "group_window", "leader_id", "machine",
|
||||
"screen", "hidden", "minimized", "size_hints_honor", "titlebar", "urgent",
|
||||
"focus", "opacity", "ontop", "above", "below", "fullscreen", "transient_for",
|
||||
"maximixed_horizontal", "maximixed_vertical", "sticky", "modal", "focusable"
|
||||
}
|
||||
|
||||
for i = 1, #inf do
|
||||
v = v .. string.format('%2s: <span color="%s">%-16s</span> = <span color="%s">%s</span>\n',
|
||||
v = v .. string.format('%2s: <span color="%s">%-20s</span> = <span color="%s">%s</span>\n',
|
||||
i,
|
||||
beautiful.fg_widget_label, inf[i],
|
||||
beautiful.fg_widget_value, tostring(c[inf[i]]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue