dwm

personal fork of dwm (rnpnr branch)
git clone anongit@rnpnr.xyz:dwm.git
Log | Files | Refs | Feed | README | LICENSE

README.md (1598B)


      1 dwm - dynamic window manager
      2 ============================
      3 dwm is an extremely fast, small, and dynamic window manager for X.
      4 
      5 This is my personal fork of [dwm](https://dwm.suckless.org) from suckless.
      6 
      7 I put it in a repo so that it is easier for me to transfer around to
      8 other systems. This has the extra side effect of allowing others to see
      9 and take ideas from it. I will not merge changes to suit other peoples
     10 needs. Follow the suckless ideology and modify your own build.
     11 
     12 NOTE: I regularly force push this branch to rebase it on master so don't
     13 expect it to be stable.
     14 
     15 Changes
     16 -------
     17 
     18 The following features have been added/changed:
     19 * Fake fullscreen: "fullscreen" a window but keep it constrained to its area
     20 * Fullscreen any window (monocle mode still has borders and the top bar)
     21 * Control bar padding via config.h
     22 * From [hiltjo's branch](https://git.codemadness.org/dwm/log.html)
     23 	- functions for cycling layouts
     24 * Patches taken from the wiki:
     25 	- bottomstack layout
     26 	- deck layout
     27 	- grid layout
     28 	- scratchpad
     29 	- statuscolors (slightly modified)
     30 	- vanity gaps
     31 
     32 Configuration
     33 -------------
     34 
     35 `config.h` is included in this branch and represents my normal settings.
     36 
     37 `config.def.h` should contain all keybind changes and corresponds with
     38 the manpage.
     39 
     40 Why use suckless?
     41 -----------------
     42 
     43 Suckless programs are by designed to be simple and easy to
     44 understand. This means that you can easily change and modify core
     45 features to suit your needs. Using a packaged version of these programs
     46 is pointless, to truly understand why they are so great you need to use
     47 them to solve your problems.