From 0170b062ff3099aabe978c5d89eede3f61b0ec1e Mon Sep 17 00:00:00 2001 From: cowmonk Date: Fri, 9 May 2025 23:15:45 -0700 Subject: [PATCH] lists --- atom.xml | 9 +++++---- blog4.html | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/atom.xml b/atom.xml index 2b8ba2c..7540588 100644 --- a/atom.xml +++ b/atom.xml @@ -75,12 +75,13 @@ See, once you have a working system, there isn’t a need to keep on configu

Getting the Goods (The Source Code!)

Alright, let’s grab the dwm source code. The suckless crew hosts their code on their own git server. However I recommend personally to get their official tarball releases (this links to the latest of the time of writing this: 6.5) their page.

-
1. Save the source code to where you want to keep it. A common spot is something like ~/.config/ or ~/.local/suckless/, just anywhere to hide it out of sight.
+
    +
  1. Save the source code to where you want to keep it. A common spot is something like ~/.config/ or ~/.local/suckless/, just anywhere to hide it out of sight.
  2. -2. Unextract it +
  3. Unextract it
  4. -3. Open your terminal & navigate to that directory (using cd and stuff) -
+
  • Open your terminal & navigate to that directory (using cd and stuff)
  • +

    Take a peek. You’ll see a bunch of .c files, a Makefile, and the golden goose: config.def.h.

    The Infamous config.h

    This is where the magic happens, folks. config.def.h is the default configuration. You’re not supposed to edit this directly. Instead, you copy it to config.h:

    diff --git a/blog4.html b/blog4.html index 5ff26f4..5c93740 100644 --- a/blog4.html +++ b/blog4.html @@ -97,12 +97,13 @@ See, once you have a working system, there isn’t a need to keep on configu

    Getting the Goods (The Source Code!)

    Alright, let’s grab the dwm source code. The suckless crew hosts their code on their own git server. However I recommend personally to get their official tarball releases (this links to the latest of the time of writing this: 6.5) their page.

    -
    1. Save the source code to where you want to keep it. A common spot is something like ~/.config/ or ~/.local/suckless/, just anywhere to hide it out of sight.
    +
      +
    1. Save the source code to where you want to keep it. A common spot is something like ~/.config/ or ~/.local/suckless/, just anywhere to hide it out of sight.
    2. -2. Unextract it +
    3. Unextract it
    4. -3. Open your terminal & navigate to that directory (using cd and stuff) -
    +
  • Open your terminal & navigate to that directory (using cd and stuff)
  • +

    Take a peek. You’ll see a bunch of .c files, a Makefile, and the golden goose: config.def.h.

    The Infamous config.h

    This is where the magic happens, folks. config.def.h is the default configuration. You’re not supposed to edit this directly. Instead, you copy it to config.h: