index.md - sites - public wiki contents of suckless.org | |
git clone git://git.suckless.org/sites | |
Log | |
Files | |
Refs | |
--- | |
index.md (951B) | |
--- | |
1 FAQ | |
2 === | |
3 Q: I've got a 1 or 2 pixel gap between the right side of my term… | |
4 right side of the screen, and I want to turn it off. | |
5 | |
6 A: This is due to the column-based nature of terminals. Terminal… | |
7 insert space somewhere, but tell the WM they can't be resized… | |
8 way. The terminal can't use the "wasted space" anyway, so thi… | |
9 aesthetics. | |
10 | |
11 You can change `static const int resizehints = 1;` to `0` in | |
12 config.h to turn resizehints off. This wastes the same amount… | |
13 inside the terminal window that would otherwise be wasted out… | |
14 | |
15 Q: Why are there gaps between my windows? | |
16 | |
17 A: See the question above. | |
18 | |
19 Q: How do I find out the values of the rules[] array in config.h? | |
20 | |
21 A: The class, instance and title properties of an X11 window can… | |
22 found out by issuing xprop(1). The corresponding values are: | |
23 | |
24 WM_CLASS(STRING) = instance, class | |
25 WM_NAME(STRING) = title | |
26 |