我如何在全屏模式下切换超赞的 wm
How can i toggle the awesome wm in total fullscreen
我正在使用很棒的 wm,我希望每个 window 都在我的显示器边缘,没有任何任务栏或标题栏。
有没有办法做到这一点?
我正在使用 ubuntu 16.04 LTS。
是的,这应该很容易。只需添加行
fullscreen = true,
遵守你的规则。
你的规则之后看起来像这样:
awful.rules.rules = {
-- All clients will match this rule.
{ rule = { },
properties = { border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
fullscreen = true,
raise = true,
keys = clientkeys,
buttons = clientbuttons,
screen = awful.screen.preferred,
placement = awful.placement.no_overlap+awful.placement.no_offscreen
}
},
任务栏仍然存在,但它会隐藏在全屏屏幕后面 window。
干杯
我正在使用很棒的 wm,我希望每个 window 都在我的显示器边缘,没有任何任务栏或标题栏。 有没有办法做到这一点? 我正在使用 ubuntu 16.04 LTS。
是的,这应该很容易。只需添加行
fullscreen = true,
遵守你的规则。
你的规则之后看起来像这样:
awful.rules.rules = {
-- All clients will match this rule.
{ rule = { },
properties = { border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
fullscreen = true,
raise = true,
keys = clientkeys,
buttons = clientbuttons,
screen = awful.screen.preferred,
placement = awful.placement.no_overlap+awful.placement.no_offscreen
}
},
任务栏仍然存在,但它会隐藏在全屏屏幕后面 window。
干杯