Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cryp7ic/dwm
preconfigured dwm install
https://github.com/cryp7ic/dwm
archlinux dwm linux window-manager
Last synced: 3 months ago
JSON representation
preconfigured dwm install
- Host: GitHub
- URL: https://github.com/cryp7ic/dwm
- Owner: Cryp7ic
- License: mit
- Created: 2022-12-27T10:37:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-28T11:59:08.000Z (about 2 years ago)
- Last Synced: 2024-05-20T16:27:48.014Z (9 months ago)
- Topics: archlinux, dwm, linux, window-manager
- Language: C
- Homepage:
- Size: 148 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Dynamic Window Manager (dwm)
============================Installation
------------
```shell
$ mkdir ~/.sources
$ cd ~/.sources
$ git clone https://github.com/Cryp7ic/dwm.git
$ cd dwm
# make clean install
```Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:dwm
If it does not work, do this:
```shell
$ which dwm
/usr/local/bin/dwm
```Then add this to .xinitrc:
```shell
/usr/local/bin/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 dwmConfiguration
-------------
The configuration of dwm is done by creating a custom config.h
and (re)compiling the source code.