Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mahmoudelshimi/mwm
Maria's Window Manger is a fork of dwm an extremely fast, small, and dynamic window manager for X written in C.
https://github.com/mahmoudelshimi/mwm
c dwm linux open-source openbsd suckless x11-wm
Last synced: about 1 month ago
JSON representation
Maria's Window Manger is a fork of dwm an extremely fast, small, and dynamic window manager for X written in C.
- Host: GitHub
- URL: https://github.com/mahmoudelshimi/mwm
- Owner: mahmoudElshimi
- License: mit
- Created: 2023-09-27T15:48:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-14T19:11:12.000Z (11 months ago)
- Last Synced: 2024-11-02T08:42:08.411Z (3 months ago)
- Topics: c, dwm, linux, open-source, openbsd, suckless, x11-wm
- Language: C
- Homepage:
- Size: 1.09 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
mwm - Maria's Window Manager
=====================================
mwm is a fork of [dwm](https://dwm.suckless.org/) an extremely fast, small, and dynamic window manager for X written in C.![Screenshot of mwm's main page](mwm.png)
Requirements
------------
In order to build mwm you need the Xlib header files.Installation
------------
Edit config.mk to match your local setup (mwm is installed into
the /usr/local namespace by default).Afterwards enter the following command to build and install mwm (if
necessary as root):
```
make clean install
```Running mwm
------------
Add the following line to your .xinitrc to start mwm using startx:
```
exec mwm
```
In order to connect mwm to a specific display, make sure that
the DISPLAY environment variable is set correctly, e.g.:
```
DISPLAY=foo.bar:1 exec mwm
```
(This will start mwm 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 mwm
```
Or you can use something better like [slstatus](https://tools.suckless.org/slstatus/) which is written in C.
```
slstatus&
exec mwm
```Configuration
-------------
The configuration of mwm is done by creating a custom config.h and (re)compiling the source code.