Introduction
Introduction Statistics Contact Development Disclaimer Help
trenamed versatile into untiled - dwm - [fork] customized build of dwm, the dyn…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 587100873a66e34251041678504a8c1e28410591
parent 27b0595af72060d7cc406639b6c53a854f0a3590
Author: Anselm R. Garbe <[email protected]>
Date: Thu, 22 Feb 2007 17:43:41 +0100
renamed versatile into untiled
Diffstat:
M client.c | 10 +++++-----
M config.arg.h | 8 ++++----
M config.default.h | 8 ++++----
M draw.c | 2 +-
M dwm.1 | 38 ++++++++++++++++-------------…
M dwm.h | 8 ++++----
M event.c | 8 ++++----
M layout.c | 16 ++++++++--------
M tag.c | 4 ++--
9 files changed, 51 insertions(+), 51 deletions(-)
---
diff --git a/client.c b/client.c
t@@ -203,8 +203,8 @@ manage(Window w, XWindowAttributes *wa) {
updatetitle(c);
for(t = clients; t && t->win != trans; t = t->next);
settags(c, t);
- if(!c->isversatile)
- c->isversatile = (t != NULL) || c->isfixed;
+ if(!c->isuntiled)
+ c->isuntiled = (t != NULL) || c->isfixed;
attach(c);
attachstack(c);
c->isbanned = True;
t@@ -285,10 +285,10 @@ resize(Client *c, int x, int y, int w, int h, Bool sizeh…
}
void
-toggleversatile(const char *arg) {
- if(!sel || lt->arrange == versatile)
+toggletiled(const char *arg) {
+ if(!sel || lt->arrange == untile)
return;
- sel->isversatile = !sel->isversatile;
+ sel->isuntiled = !sel->isuntiled;
lt->arrange();
}
diff --git a/config.arg.h b/config.arg.h
t@@ -18,7 +18,7 @@
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
#define RULES \
static Rule rule[] = { \
- /* class:instance:title regex tags regex isversatile */ \
+ /* class:instance:title regex tags regex isuntiled */ \
{ "Firefox", "3", False }, \
{ "Gimp", NULL, True }, \
{ "MPlayer", NULL, True }, \
t@@ -30,11 +30,11 @@ static Rule rule[] = { \
static Layout layout[] = { \
/* symbol function */ \
{ "[]=", tile }, /* first entry is default */ \
- { "><>", versatile }, \
+ { "><>", untile }, \
};
#define MASTERWIDTH 600 /* master width per thou…
#define NMASTER 1 /* clients in master a…
-#define SNAP 40 /* versatile snap pixel …
+#define SNAP 40 /* untiled snap pixel */
/* key definitions */
#define MODKEY Mod1Mask
t@@ -56,7 +56,7 @@ static Key key[] = { \
{ MODKEY, XK_k, focusclient, …
{ MODKEY, XK_m, togglemax, …
{ MODKEY, XK_Return, zoom, …
- { MODKEY|ShiftMask, XK_space, toggleversatile,NU…
+ { MODKEY|ShiftMask, XK_space, toggletiled, …
{ MODKEY|ShiftMask, XK_c, killclient, …
{ MODKEY, XK_0, view, …
{ MODKEY, XK_1, view, …
diff --git a/config.default.h b/config.default.h
t@@ -20,7 +20,7 @@ const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8…
* xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { pr…
#define RULES \
static Rule rule[] = { \
- /* class:instance:title regex tags regex isversatile */ \
+ /* class:instance:title regex tags regex isuntiled */ \
{ "Gimp", NULL, True }, \
{ "MPlayer", NULL, True }, \
{ "Acroread", NULL, True }, \
t@@ -31,11 +31,11 @@ static Rule rule[] = { \
static Layout layout[] = { \
/* symbol function */ \
{ "[]=", tile }, /* first entry is default */ \
- { "><>", versatile }, \
+ { "><>", untile }, \
};
#define MASTERWIDTH 600 /* master width per thou…
#define NMASTER 1 /* clients in master a…
-#define SNAP 20 /* versatile snap pixel …
+#define SNAP 20 /* untiled snap pixel */
/* key definitions */
#define MODKEY Mod1Mask
t@@ -52,7 +52,7 @@ static Key key[] = { \
{ MODKEY|ShiftMask, XK_Tab, focusclient,…
{ MODKEY, XK_m, togglemax, …
{ MODKEY, XK_Return, zoom, …
- { MODKEY|ShiftMask, XK_space, toggleversatile,NU…
+ { MODKEY|ShiftMask, XK_space, toggletiled, …
{ MODKEY|ShiftMask, XK_c, killclient, …
{ MODKEY, XK_0, view, …
{ MODKEY, XK_1, view, …
diff --git a/draw.c b/draw.c
t@@ -81,7 +81,7 @@ drawstatus(void) {
dc.x = x;
if(sel) {
drawtext(sel->name, dc.sel);
- drawsquare(sel->ismax, sel->isversatile, dc.sel);
+ drawsquare(sel->ismax, sel->isuntiled, dc.sel);
}
else
drawtext(NULL, dc.norm);
diff --git a/dwm.1 b/dwm.1
t@@ -5,14 +5,14 @@ dwm \- dynamic window manager
.B dwm
.RB [ \-v ]
.SH DESCRIPTION
-dwm is a dynamic window manager for X. It manages windows in tiling and
-versatile layouts. Either layout can be applied dynamically, optimizing the
+dwm is a dynamic window manager for X. It manages windows in tiled and
+untiled layouts. Either layout can be applied dynamically, optimizing the
environment for the application in use and the task performed.
.P
-In tiling layout windows are managed in a master and stacking area. The master
+In tiled layout windows are managed in a master and stacking area. The master
area contains the windows which currently need most attention, whereas the
-stacking area contains all other windows. In versatile layout windows can be
-resized and moved freely. Dialog windows are always managed versatile,
+stacking area contains all other windows. In untiled layout windows can be
+resized and moved freely. Dialog windows are always managed untiled,
regardless of the layout applied.
.P
Windows are grouped by tags. Each window can be tagged with one or multiple
t@@ -20,8 +20,8 @@ tags. Selecting certain tags displays all windows with these…
.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
-versatile window is indicated with an empty square and a maximized
-versatile window is indicated with a filled square before the windows
+untiled window is indicated with an empty square and a maximized
+untiled 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
t@@ -40,7 +40,7 @@ is read and displayed in the status text area.
.TP
.B Button1
click on a tag label to display all windows with that tag, click on the layout
-label toggles between tiling and versatile layout.
+label toggles between tiled and untiled layout.
.TP
.B Button3
click on a tag label adds/removes all windows with that tag to/from the view.
t@@ -57,7 +57,7 @@ Start
.BR xterm (1).
.TP
.B Mod1-Return
-Zooms/cycles current window to/from master area (tiling layout only).
+Zooms/cycles current window to/from master area (tiled layout only).
.TP
.B Mod1-Tab
Focus next window.
t@@ -66,19 +66,19 @@ Focus next window.
Focus previous window.
.TP
.B Mod1-g
-Increase master area width (tiling layout only).
+Increase master area width (tiled layout only).
.TP
.B Mod1-s
-Decrease master area width (tiling layout only).
+Decrease master area width (tiled layout only).
.TP
.B Mod1-i
-Increase the number of windows in the master area (tiling layout only).
+Increase the number of windows in the master area (tiled layout only).
.TP
.B Mod1-d
-Decrease the number of windows in the master area (tiling layout only).
+Decrease the number of windows in the master area (tiled layout only).
.TP
.B Mod1-m
-Toggles maximization of current window (versatile layout only).
+Toggles maximization of current window (untiled layout only).
.TP
.B Mod1-Shift-[1..n]
Apply
t@@ -97,10 +97,10 @@ tag to/from current window.
Close focused window.
.TP
.B Mod1-space
-Toggle between tiling and versatile layout (affects all windows).
+Toggle between tiled and untiled layout (affects all windows).
.TP
.B Mod1-Shift-space
-Toggle focused window between versatile and non-versatile state (tiling layout…
+Toggle focused window between untiled and non-untiled state (tiled layout only…
.TP
.B Mod1-[1..n]
View all windows with
t@@ -120,13 +120,13 @@ Quit dwm.
.SS Mouse commands
.TP
.B Mod1-Button1
-Move current window while dragging (versatile layout only).
+Move current window while dragging (untiled layout only).
.TP
.B Mod1-Button2
-Zooms/cycles current window to/from master area (tiling layout only).
+Zooms/cycles current window to/from master area (tiled layout only).
.TP
.B Mod1-Button3
-Resize current window while dragging (versatile layout only).
+Resize current window while dragging (untiled layout only).
.SH CUSTOMIZATION
dwm is customized by creating a custom config.h and (re)compiling the source
code. This keeps it fast, secure and simple.
diff --git a/dwm.h b/dwm.h
t@@ -67,7 +67,7 @@ struct Client {
int minax, minay, maxax, maxay;
long flags;
unsigned int border;
- Bool isbanned, isfixed, ismax, isversatile;
+ Bool isbanned, isfixed, ismax, isuntiled;
Bool *tags;
Client *next;
Client *prev;
t@@ -105,7 +105,7 @@ extern void killclient(const char *arg); /*…
extern void manage(Window w, XWindowAttributes *wa); /* manage new clie…
extern void resize(Client *c, int x, int y,
int w, int h, Bool sizehints); /* resize with given coo…
-extern void toggleversatile(const char *arg); /* toggles focused client…
+extern void toggletiled(const char *arg); /* toggles focused client bet…
extern void updatesizehints(Client *c); /* update the size hint…
extern void updatetitle(Client *c); /* update the name of c */
extern void unmanage(Client *c); /* destroy c */
t@@ -126,8 +126,8 @@ extern void initlayouts(void); /* i…
extern Client *nexttiled(Client *c); /* returns tiled successor…
extern void restack(void); /* restores z layers of all …
extern void setlayout(const char *arg); /* sets layout, -1 togg…
-extern void togglemax(const char *arg); /* toggles maximization…
-extern void versatile(void); /* arranges all windows ve…
+extern void togglemax(const char *arg); /* toggles maximization…
+extern void untile(void); /* arranges all windows until…
extern void zoom(const char *arg); /* zooms the focused client …
/* main.c */
diff --git a/event.c b/event.c
t@@ -151,14 +151,14 @@ buttonpress(XEvent *e) {
focus(c);
if(CLEANMASK(ev->state) != MODKEY)
return;
- if(ev->button == Button1 && (lt->arrange == versatile || c->is…
+ if(ev->button == Button1 && (lt->arrange == untile || c->isunt…
restack();
movemouse(c);
}
else if(ev->button == Button2)
zoom(NULL);
else if(ev->button == Button3
- && (lt->arrange == versatile || c->isversatile) && !c->isfixed)
+ && (lt->arrange == untile || c->isuntiled) && !c->isfixed)
{
restack();
resizemouse(c);
t@@ -176,7 +176,7 @@ configurerequest(XEvent *e) {
c->ismax = False;
if(ev->value_mask & CWBorderWidth)
c->border = ev->border_width;
- if(c->isfixed || c->isversatile || (lt->arrange == versatile))…
+ if(c->isfixed || c->isuntiled || (lt->arrange == untile)) {
if(ev->value_mask & CWX)
c->x = ev->x;
if(ev->value_mask & CWY)
t@@ -304,7 +304,7 @@ propertynotify(XEvent *e) {
default: break;
case XA_WM_TRANSIENT_FOR:
XGetTransientForHint(dpy, c->win, &trans);
- if(!c->isversatile && (c->isversatile = (getcl…
+ if(!c->isuntiled && (c->isuntiled = (getclient…
lt->arrange();
break;
case XA_WM_NORMAL_HINTS:
diff --git a/layout.c b/layout.c
t@@ -31,7 +31,7 @@ tile(void) {
if(c->isbanned)
XMoveWindow(dpy, c->win, c->x, c->y);
c->isbanned = False;
- if(c->isversatile)
+ if(c->isuntiled)
continue;
c->ismax = False;
nx = wax;
t@@ -148,7 +148,7 @@ initlayouts(void) {
Client *
nexttiled(Client *c) {
- for(; c && (c->isversatile || !isvisible(c)); c = c->next);
+ for(; c && (c->isuntiled || !isvisible(c)); c = c->next);
return c;
}
t@@ -160,10 +160,10 @@ restack(void) {
drawstatus();
if(!sel)
return;
- if(sel->isversatile || lt->arrange == versatile)
+ if(sel->isuntiled || lt->arrange == untile)
XRaiseWindow(dpy, sel->win);
- if(lt->arrange != versatile) {
- if(!sel->isversatile)
+ if(lt->arrange != untile) {
+ if(!sel->isuntiled)
XLowerWindow(dpy, sel->win);
for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
if(c == sel)
t@@ -202,7 +202,7 @@ void
togglemax(const char *arg) {
XEvent ev;
- if(!sel || (lt->arrange != versatile && !sel->isversatile) || sel->isf…
+ if(!sel || (lt->arrange != untile && !sel->isuntiled) || sel->isfixed)
return;
if((sel->ismax = !sel->ismax)) {
sel->rx = sel->x;
t@@ -218,7 +218,7 @@ togglemax(const char *arg) {
}
void
-versatile(void) {
+untile(void) {
Client *c;
for(c = clients; c; c = c->next) {
t@@ -245,7 +245,7 @@ zoom(const char *arg) {
unsigned int n;
Client *c;
- if(!sel || lt->arrange != tile || sel->isversatile)
+ if(!sel || lt->arrange != tile || sel->isuntiled)
return;
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
n++;
diff --git a/tag.c b/tag.c
t@@ -12,7 +12,7 @@
typedef struct {
const char *prop;
const char *tags;
- Bool isversatile;
+ Bool isuntiled;
} Rule;
typedef struct {
t@@ -83,7 +83,7 @@ settags(Client *c, Client *trans) {
ch.res_name ? ch.res_name : "", c->name);
for(i = 0; i < nrules; i++)
if(regs[i].propregex && !regexec(regs[i].propregex, pr…
- c->isversatile = rule[i].isversatile;
+ c->isuntiled = rule[i].isuntiled;
for(j = 0; regs[i].tagregex && j < ntags; j++)…
if(!regexec(regs[i].tagregex, tags[j],…
matched = True;
You are viewing proxied material from mx1.adamsgaard.dk. 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.