Introduction
Introduction Statistics Contact Development Disclaimer Help
index.md - sites - public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log
Files
Refs
---
index.md (1474B)
---
1 Foreground or Background
2 ========================
3
4 Description
5 -----------
6 This patch combines the features of blur-pixelated-screen and dwmlogo; i…
7
8 Notes
9 -----
10 The size of the logo is configurable with `logosize` in the `config.h`.
11
12 This patch is not limited by the dwm logo.
13 By changing the `rectangles` variable in `config.h` you can create any f…
14
15 Define either `BLUR` (default) or `PIXELATION` to set which type of mask…
16
17 With the `dpms` patch there is a conflict in the `main` function.
18 This is easly fixed by editing the `main` function in `slock.c`
19 so it looks like this, for it to work properly:
20
21 main(int argc, char **argv){
22 ...
23 XFreeGC(dpy, locks[s]->gc);
24 }
25
26 /* reset DPMS values to inital ones */
27 DPMSSetTimeouts(dpy, standby, suspend, off);
28 XSync(dpy, 0);
29 XCloseDisplay(dpy);
30
31 return 0;
32 }
33
34 Download
35 --------
36 * [slock-foreground-and-background-20210611-35633d4.diff](slock-foregrou…
37
38 Authors
39 -------
40 * KNIX 3 - <[email protected]>
41 * Arie Boven - <[email protected]>
42 * Lars Niesen - <[email protected]>
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.