my fork of dwm
  • C 93.1%
  • Roff 4.9%
  • Makefile 2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2021-09-29 17:39:55 -06:00
.gitignore added new font and cfacts 2021-06-03 23:10:12 -06:00
config.def.h fixed fonts 2021-06-04 19:05:19 -06:00
config.h fixed fonts 2021-06-04 19:05:19 -06:00
config.mk config.mk: fix POSIX_C_SOURCE macro for feature test for snprintf() 2020-04-03 15:36:32 +02:00
drw.c added xresources 2021-06-04 01:16:18 -06:00
drw.h added xresources 2021-06-04 01:16:18 -06:00
dwm.1 dwm.1: fix wrong text in man page 2020-07-08 18:05:50 +02:00
dwm.c added move 2021-06-04 02:18:11 -06:00
dwm.png alternate dwm.png 2006-07-19 14:49:19 +02:00
fibonacci.c added fibonacci 2021-06-03 23:59:42 -06:00
LICENSE.md added new font and cfacts 2021-06-03 23:10:12 -06:00
Makefile Makefile: just show the compiler output 2018-06-02 17:10:28 +02:00
README.md Update README.md 2021-09-29 17:39:55 -06:00
transient.c applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver 2011-07-29 20:01:22 +02:00
util.c die() on calloc failure 2016-11-05 11:34:52 +01:00
util.h import new drw from libsl and minor fixes. 2016-06-26 13:52:36 +02:00

    ..                         .colclll;.               .;,
   .x-1c                        .xNNkl:'.   .,,.        .dWK;
   .xW-1'        ....'..         .kNx.      :XNk'       .OWNx.
.,,'oNNd;:clodxkkkk-1XXo          'ONo.     'OWN0;      :XNW0,
:OK-1KNWXOxdlc:,'...oNXc,xl.    .. :XK:      oNNNK:   .cONXNXc
 ...,OWK:         ,-1Wx..lXx. .dXd..dNO.     ;KNNNKc .dNNOo0Wd.
     oNNl        'ONx.  .dNl ,-1WXx.'ONl     .xNK0NXloXWX:.xWO'
     ;XWx.      ;-1Nd.    '00':XKOXO,cX0,     cNKldNNNNXo  cNX:
     .OW-1'    .lKKl.      dNloNd.oX0ldXd.    '0Nl.oKKd:.  ,0Wd.
     .dWX:   ,kXk'        :XOOXc  cKKkKXc    .xWx. ..     .xW-1'
      cXWd.,xKO;          .ONNK,   ,ONNNK:   .dW-1,         cNNc
      ,0WKO0x;.           .dNWO.    .oXNWO'kX00NX;         'OWk.
;xkdllxXWNx.               lNNo       ;0NNd.l0NNX:          oNXc
,xO0Oxoll;.                :Kk.        .dOl  .d0d.          '0WO'
  ..                       ...           .     .             ,ol'

dwm - dynamic window manager

dwm is an extremely fast, small, and dynamic window manager for X.

Requirements

In order to build dwm you need the Xlib header files.

Installation

Edit config.mk to match your local setup (dwm is installed into the /usr/local namespace by default).

Afterwards enter the following command to build and install dwm (if necessary as root):

make clean install

Running dwm

Add the following line to your .xinitrc to start dwm using startx:

exec dwm

In order to connect dwm to a specific display, make sure that the DISPLAY environment variable is set correctly, e.g.:

DISPLAY=foo.bar:1 exec dwm

(This will start dwm on display :1 of the host foo.bar.)

In order to display status info in the bar, you can do something like this in your .xinitrc:

while xsetroot -name "`date` `uptime | sed 's/.*,//'`"
do
	sleep 1
done &
exec dwm

Configuration

The configuration of dwm is done by creating a custom config.h and (re)compiling the source code.

Keybinds

NOTE: Windows Key is Mod

Mod+H = Increase cfact      
Mod+L = Decrease cfact      
Mod+\ = Previously selected      
Mod+J = Next to selected      
Mod+K = Previous to selected      
Mod+Q = First position      
Mod+A = Second position      
Mod+Z = Third position      
Mod+X = Last position      
Mod+T = Bottom stack      
Mod+O = Bottom stack horizontal   
Mod+R = Spiral   
Mod+Shift+R = Dwindle   
Mod+S = Sticky   

Added

https://dwm.suckless.org/patches/activetagindicatorbar/

Volume and Brightness Keys

https://dwm.suckless.org/patches/cfacts/

https://dwm.suckless.org/patches/stacker/

https://dwm.suckless.org/patches/bottomstack/

https://dwm.suckless.org/patches/fibonacci/

https://dwm.suckless.org/patches/cropwindows/

https://dwm.suckless.org/patches/sticky/

https://dwm.suckless.org/patches/xresources/

https://dwm.suckless.org/patches/movetoedge

https://dwm.suckless.org/patches/statuscmd/