blob: 5b19d0608e57c035cb3afb82283733d67a684a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!doctype html>
<html lang="EN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>test</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>DWM Window manager [1]</h2>
<h3>2025-04-21</h3>
<h4>Suckless window manager</h4>
<p><a href="https://www.suckless.org" target="_blank">Suckless web site</a></p>
<p>It struck me that using DWM with Monocle layout would be just what I've been looking for on my X220</p>
<p>I cloned the st, dmenu, and dwm from suckless.org and followed the instructions to compile them.</p>
<p>Right now I have Xfce4 installed, so to try out DWM I've added an entry to select it in lightdm</p>
<p><b>sudo micro /usr/share/xsessions/dwm.desktop</b></p>
<code>[Desktop Entry]
Encoding=UTF-8
Name=dwm
Comment=Dynamic window manager
Exec=dwm
Icon=dwm
Type=XSession
</code>
<p>In dwm's config.h I set the monocle layout as default and recompiled dwm.</p>
<p>At first glance this looks much better than the i3 window manager, small, neat and fast.</p>
<p>More to come...</p>
</article>
</main>
<footer>
<p> </p>
<p>§</p>
</footer>
</body>
</html>
|