[wiki] [upstream] Applied 'sed -e s/\*\*\([^\*\*]*\)\*\*/\1/g' to index.md, changed number of keywords bolded, and made grammatical adjustments. || antony

From: <hg_AT_suckless.org>
Date: Tue, 29 Jul 2008 17:34:43 +0100 (BST)

changeset: 76:eb52fbb21777
tag: tip
user: antony_AT_localhost.localdomain
date: Tue Jul 29 12:32:52 2008 -0400
files: dwm/customisation/font.md dwm/customisation/index.md
description:
Applied 'sed -e s/\*\*\([^\*\*]*\)\*\*/\1/g' to index.md, changed number of keywords bolded, and made grammatical adjustments.


diff -r 6e104a7cf365 -r eb52fbb21777 dwm/customisation/font.md
--- a/dwm/customisation/font.md Tue Jul 29 10:58:52 2008 +0100
+++ b/dwm/customisation/font.md Tue Jul 29 12:32:52 2008 -0400
_AT_@ -5,13 +5,13 @@
 
         static const char font[] = "..."
 
-Using **xfontsel** (a program distributed with X), you can produce a font line for the font you like to be used by **dwm** when displaying text in the menubar.
+By using **xfontsel**, you can produce a font line for the font you would like to be used by **dwm** when displaying text in the menubar.
 
 For example, to change the font to 'fixed', you can change the value of font to:
 
         static const char font[] = "-misc-fixed-medium-r-semicondensed--13-100-100-100-c-60-iso8859-1";
 
-The follwing patch also produces the same result:
+The following patch also produces the same result:
 
         --- a/config.def.h Mon Jul 28 20:23:16 2008 +0100
         +++ b/config.def.h Mon Jul 28 20:45:27 2008 +0100
diff -r 6e104a7cf365 -r eb52fbb21777 dwm/customisation/index.md
--- a/dwm/customisation/index.md Tue Jul 29 10:58:52 2008 +0100
+++ b/dwm/customisation/index.md Tue Jul 29 12:32:52 2008 -0400
_AT_@ -4,32 +4,33 @@
 **dwm** is customised by editing **config.h**, a C language header file, and **config.mk**, a Make include file.
 
 What is **config.h**?
-----------------------
+---------------------
 
-**config.h** is a source code file which is included by **dwm.c**, the main **dwm** source code module.
-A fresh source code download of **dwm** will contain a file called **config.def.h**: this file is a template from which to create your own **config.h** file.
-To start customising **dwm**, simply copy **config.def.h** into **config.h** before you run make.
+config.h is a source code file which is included by dwm.c, the main dwm source code module.
+It serves as the configuration file for all of dwm's features, e.g., application placement, tags, and colours.
+A vanilla download of dwm will contain a file called config.def.h, a template you can use to create your own config.h file.
+To start customising dwm, simply copy config.def.h into config.h before you run make.
 
 What is **config.mk**?
 ----------------------
 
-**config.mk** is a file included by Makefile, where you can customise how make is going to compile and install **dwm**.
+config.mk is a file included by Makefile. It allows you to configure how make is going to compile and install dwm.
 
 How do I modify **config.h**?
 -----------------------------
 
-**config.h** can be edited just like any other C source code file.
-It contains definitions of variables that are going to be used by **dwm.c**, and therefore it is vital that the file is always up to date.
-The default Makefile distributed with **dwm** does not contain a rule to overwrite your customised **config.h** in case **config.def.h** is updated, for example after a pull from the mercurial repository.
-It is therefore important you always compare your customised **config.h** with **config.def.h** and make sure you include any changes in your source.
+config.h can be edited just like any other C source code file.
+It contains definitions of variables that are going to be used by dwm.c and therefore it is vital that the file is always up to date.
+The default Makefile distributed with dwm will not overwrite your customised config.h with the contents of config.def.h, even if it was updated in the latest mercurial pull.
+Therefore, you should always compare your customised config.h with config.def.h and make sure you include any changes to the latter in your config.h.
 
 How do I modify **config.mk**?
------------------------------
+_-----------------------------
 
-**config.mk** can be edited just like any other text file.
+config.mk can be edited just like any other text file.
 It contains definitions of variables that are going to be used inside Makefile.
-Unlike **config.h**, **config.mk** does not have a **config.def.mk**.
-Therefore, during an update of your repository you may run into conflicts if the original **config.mk** is edited.
+Unlike config.h, config.mk does not have a config.def.mk (a default Makefile).
+Therefore, during an update of your repository you may run into conflicts if the original config.mk is edited.
 
 Are there any example customisations to get me started?
 -------------------------------------------------------
Received on Tue Jul 29 2008 - 18:34:43 CEST

This archive was generated by hypermail 2.3.0 : Thu Sep 13 2012 - 19:30:22 CEST