mirror of
git://git.suckless.org/dwm
synced 2025-08-05 22:52:21 -07:00
Compare commits
78 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3632d7132f | ||
|
565697087b | ||
|
ea0008cba2 | ||
|
af508c2e82 | ||
|
f0d1d5206f | ||
|
1c80c05587 | ||
|
1e350be229 | ||
|
1a26389e2b | ||
|
bf9da23f07 | ||
|
2373940215 | ||
|
90687482ad | ||
|
5ab627c06c | ||
|
76d7e80fc4 | ||
|
af8049bce8 | ||
|
2bb51b3246 | ||
|
b16d8282be | ||
|
fef4614772 | ||
|
be39dddcc5 | ||
|
6d209b9b29 | ||
|
57a0788bd8 | ||
|
3ad906eede | ||
|
0be9fb8797 | ||
|
62a491e36d | ||
|
0b5dcf229f | ||
|
fda92f46aa | ||
|
a62ea4062f | ||
|
7dc28d130f | ||
|
fbce733532 | ||
|
e7572804fa | ||
|
ed1bef1241 | ||
|
2b047e460b | ||
|
5f74dc5e78 | ||
|
ea8a4ca46a | ||
|
4883a06221 | ||
|
4dea5324c0 | ||
|
53cac17692 | ||
|
83abfc05eb | ||
|
862b0d541d | ||
|
c1c6fdc5d8 | ||
|
9a4d07d9de | ||
|
30410108eb | ||
|
753e0e048e | ||
|
d15d4ba45a | ||
|
815f9c054d | ||
|
addc52c948 | ||
|
26f41c9055 | ||
|
73ec124ae9 | ||
|
ec11a3470c | ||
|
4b3b597da3 | ||
|
288cf78b18 | ||
|
6411aa921b | ||
|
db5db8806f | ||
|
258c338030 | ||
|
85da537856 | ||
|
2b4157eccd | ||
|
0f26de991f | ||
|
840f937a98 | ||
|
6975a7e31a | ||
|
47f63dce55 | ||
|
02a8ca95cf | ||
|
2ce50a9cad | ||
|
bfa5869da1 | ||
|
087a55f8d3 | ||
|
6d7285fd6e | ||
|
69c7b4b0ba | ||
|
97699e5b1b | ||
|
2dc7f42fd7 | ||
|
9f3a5cb754 | ||
|
b48fa3f101 | ||
|
051a404b66 | ||
|
d8d733c34f | ||
|
bb01e5a16f | ||
|
06f7eed103 | ||
|
0ffa6d1393 | ||
|
15ce143620 | ||
|
63d7190231 | ||
|
b279cef670 | ||
|
6254ef9dc7 |
6
.hgtags
6
.hgtags
@@ -54,3 +54,9 @@ d6d3085307d8d98b8b012b669e858fd787befeb1 4.7
|
||||
607015ddb091d49cbd3457af41713691aa69f4d6 4.8
|
||||
22c669b2dd3673785c3476b9976da21e8783f745 4.9
|
||||
06eb9644e2dad7667d97495eb7d7bc62aa0429e8 5.0
|
||||
ce355cea9bb89e162f61913737a46908cdfa7e45 5.1
|
||||
e4bcaca8e6ef13d2c3b81f1218ad15e5da4d68bd 5.2
|
||||
4004d61160355d869a7d2672561caad440751ba0 5.3
|
||||
335301ed102fec9b1a15d06bfa0184d53b38fa54 5.3.1
|
||||
8b7836a471f8f9ee61bec980df00971888d76343 5.4
|
||||
85a78d8afa0fe8b106a8223b5327e5bddb5dd5e3 5.4.1
|
||||
|
5
LICENSE
5
LICENSE
@@ -1,12 +1,15 @@
|
||||
MIT/X Consortium License
|
||||
|
||||
© 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
|
||||
© 2006-2009 Anselm R Garbe <garbeam at gmail dot com>
|
||||
© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
|
||||
© 2006-2007 Jukka Salmi <jukka at salmi dot ch>
|
||||
© 2007 Premysl Hruby <dfenze at gmail dot com>
|
||||
© 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
|
||||
© 2007 Christof Musik <christof at sendfax dot de>
|
||||
© 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
|
||||
© 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
|
||||
© 2008 Martin Hurton <martin dot hurton at gmail dot com>
|
||||
© 2008 Neale Pickett <neale dot woozle dot org>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
|
5
README
5
README
@@ -40,9 +40,10 @@ like this in your .xinitrc:
|
||||
|
||||
while true
|
||||
do
|
||||
echo `date` `uptime | sed 's/.*,//'`
|
||||
xsetroot -name "`date` `uptime | sed 's/.*,//'`"
|
||||
sleep 1
|
||||
done | dwm
|
||||
done &
|
||||
exec dwm
|
||||
|
||||
|
||||
Configuration
|
||||
|
@@ -15,6 +15,7 @@ static Bool topbar = True; /* False means bottom bar */
|
||||
|
||||
/* tagging */
|
||||
static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
|
||||
static unsigned int tagset[] = {1, 1}; /* after start, first tag is selected */
|
||||
|
||||
static Rule rules[] = {
|
||||
/* class instance title tags mask isfloating */
|
||||
@@ -23,7 +24,7 @@ static Rule rules[] = {
|
||||
};
|
||||
|
||||
/* layout(s) */
|
||||
static float mfact = 0.55;
|
||||
static float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||
static Bool resizehints = True; /* False means respect size hints in tiled resizals */
|
||||
|
||||
static Layout layouts[] = {
|
||||
|
@@ -1,5 +1,5 @@
|
||||
# dwm version
|
||||
VERSION = 5.1
|
||||
VERSION = 5.5
|
||||
|
||||
# Customize below to fit your system
|
||||
|
||||
@@ -10,7 +10,7 @@ MANPREFIX = ${PREFIX}/share/man
|
||||
X11INC = /usr/X11R6/include
|
||||
X11LIB = /usr/X11R6/lib
|
||||
|
||||
# Xinerama, comment if you don't want it
|
||||
# Xinerama, un-comment if you want it
|
||||
XINERAMALIBS = -L${X11LIB} -lXinerama
|
||||
XINERAMAFLAGS = -DXINERAMA
|
||||
|
||||
|
14
dwm.1
14
dwm.1
@@ -20,13 +20,13 @@ Windows are grouped by tags. Each window can be tagged with one or multiple
|
||||
tags. Selecting certain tags displays all windows with these tags.
|
||||
.P
|
||||
dwm contains a small status bar which displays all available tags, the layout,
|
||||
the title of the focused window, and the text read from standard input. A
|
||||
floating window is indicated with an empty square and a maximised
|
||||
floating window is indicated with a filled square before the windows
|
||||
title. The selected tags are indicated with a different color. The tags of
|
||||
the focused window are indicated with a filled square in the top left
|
||||
corner. The tags which are applied to one or more windows are indicated
|
||||
with an empty square in the top left corner.
|
||||
the title of the focused window, and the text read from the root window name
|
||||
property. A floating window is indicated with an empty square and a maximised
|
||||
floating window is indicated with a filled square before the windows title.
|
||||
The selected tags are indicated with a different color. The tags of the focused
|
||||
window are indicated with a filled square in the top left corner. The tags
|
||||
which are applied to one or more windows are indicated with an empty square in
|
||||
the top left corner.
|
||||
.P
|
||||
dwm draws a small border around windows to indicate the focus state.
|
||||
.SH OPTIONS
|
||||
|
Reference in New Issue
Block a user