securityos/public/Users/Public/Documents/Dotfiles/Gentoo/dwm
Berkeley 927854894b First commit 2024-09-06 12:32:35 -03:00
..
Scripts First commit 2024-09-06 12:32:35 -03:00
dmenu First commit 2024-09-06 12:32:35 -03:00
dwmblocks First commit 2024-09-06 12:32:35 -03:00
dwmstatus First commit 2024-09-06 12:32:35 -03:00
themes First commit 2024-09-06 12:32:35 -03:00
LICENSE First commit 2024-09-06 12:32:35 -03:00
Makefile First commit 2024-09-06 12:32:35 -03:00
README First commit 2024-09-06 12:32:35 -03:00
config.def.h First commit 2024-09-06 12:32:35 -03:00
config.def.h.orig First commit 2024-09-06 12:32:35 -03:00
config.def.h.rej First commit 2024-09-06 12:32:35 -03:00
config.h First commit 2024-09-06 12:32:35 -03:00
config.mk First commit 2024-09-06 12:32:35 -03:00
config.mk.orig First commit 2024-09-06 12:32:35 -03:00
config.mk.rej First commit 2024-09-06 12:32:35 -03:00
drw.c First commit 2024-09-06 12:32:35 -03:00
drw.h First commit 2024-09-06 12:32:35 -03:00
drw.o First commit 2024-09-06 12:32:35 -03:00
dwm First commit 2024-09-06 12:32:35 -03:00
dwm-actualfullscreen-20191112-cb3f58a.diff First commit 2024-09-06 12:32:35 -03:00
dwm-autostart-20161205-bb3bd6f.diff First commit 2024-09-06 12:32:35 -03:00
dwm-bar-height-6.2.diff First commit 2024-09-06 12:32:35 -03:00
dwm-fullgaps-20200508-7b77734.diff First commit 2024-09-06 12:32:35 -03:00
dwm-hide_vacant_tags-6.3.diff First commit 2024-09-06 12:32:35 -03:00
dwm-preserveonrestart-6.3.diff First commit 2024-09-06 12:32:35 -03:00
dwm-restartsig-20180523-6.2.diff First commit 2024-09-06 12:32:35 -03:00
dwm-rotatestack-20161021-ab9571b.diff First commit 2024-09-06 12:32:35 -03:00
dwm-systray-6.3.diff First commit 2024-09-06 12:32:35 -03:00
dwm.1 First commit 2024-09-06 12:32:35 -03:00
dwm.1.orig First commit 2024-09-06 12:32:35 -03:00
dwm.c First commit 2024-09-06 12:32:35 -03:00
dwm.c.orig First commit 2024-09-06 12:32:35 -03:00
dwm.c.rej First commit 2024-09-06 12:32:35 -03:00
dwm.o First commit 2024-09-06 12:32:35 -03:00
dwm.png First commit 2024-09-06 12:32:35 -03:00
transient.c First commit 2024-09-06 12:32:35 -03:00
util.c First commit 2024-09-06 12:32:35 -03:00
util.h First commit 2024-09-06 12:32:35 -03:00
util.o First commit 2024-09-06 12:32:35 -03:00

README

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

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.