You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is recommended to enable the compiler optimization flags: **-O3** and **-march=native** to enable auto loop vectorize, which leads to better performance.
11
+
12
+
If you discover any bugs or have any idea to optimize it, feel free to create an issue there.
13
+
14
+
Dependency
15
+
----------
16
+
The patch depends on Imlib2 for icon scaling, which can be easily installed in most distros.
17
+
18
+
Arch Linux:
19
+
```sh
20
+
sudo pacman -S imlib2
21
+
```
22
+
Debian:
23
+
```sh
24
+
sudo apt install libimlib2-dev
25
+
```
26
+
27
+
Configuration
28
+
-------------
29
+
```c
30
+
#defineICONSIZE 20 /* icon size in pixels */
31
+
#define ICONSPACING 5 /* space (pixels) between icon and title */
32
+
```
33
+
34
+
Alpha Patch
35
+
-----------
36
+
If you also use [alpha patch](https://dwm.suckless.org/patches/alpha/), some modifications are needed to make dwm work correctly.
0 commit comments