简体   繁体   中英

Awesome WM: terminal window doesn't take full space

I use Awesome as my WM and I don't know how to make my terminal window take full tiling space on my screen. My resolution is 1366x768.

I think this problem has already in FAQ [ 3 ] of awesome wm.

You just add size_hints_honor = false to the properties section in your awful.rules.rules table. And it worked with me. This is some screenshots:

Before [ 1 ] 在我添加之前

After [ 2 ] 我加了之后

I am using rxvt-unicode and awesome 3.4 for terminal.

Hope your helped.

Terminals and other character based windows can set hints (the WM_NORMAL_HINTS ) which can specify, among other things, resize increments.

These increments then tell the window manager that the window in question can only be resized in units of the increment (any amount less than that and the application can't use it).

This is done to avoid having to deal with the inability to display a character in partial cells.

Your terminal is providing these hints (use xprop WM_NORMAL_HINTS and click the window to see them) and so awesome is only sizing by that increment and the space left at the bottom there is smaller than the increment unit and cannot be assigned to the terminal window.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM