Xmd/INSTALL.md

55 lines
1.0 KiB
Markdown
Raw Normal View History

2023-11-03 21:59:24 +00:00
# Installing
## Dependencies
- Xlib
- Xt
- Motif
2023-11-14 22:02:46 +00:00
- MWM
2023-11-03 21:59:24 +00:00
- A C compiler
2023-11-03 22:10:33 +00:00
- brightnessctl (for xmbrightness)
2023-11-14 22:02:46 +00:00
- xwallpaper
2023-11-03 21:59:24 +00:00
Installing via APK:
2023-11-03 22:05:04 +00:00
```
2023-11-14 22:02:46 +00:00
# apk add libx11 libx11-dev libxt libxt-dev motif motif-dev mwm xwallpaper clang
2023-11-03 21:59:24 +00:00
```
## libXmd
Before building any of the applications you will need to build libXmd, which
contains code common to most of them:
```
# cd libXmd
# ./build.sh install
```
## Individual applications
Individual applications can be installed using `./build.sh` in their respective
subdirectories:
```
# cd <application>
# ./build.sh install
```
2023-11-14 22:02:46 +00:00
## Replicants
Xmd provides something called replicants, which are dynamically loaded widgets
that can be placed inside of xmpanel. They can be installed using `./build.sh`
in their respective subdirectories:
```
# cd replicants/<replicant>
# ./build.sh install
```
## Session
Xmd includes a startup script and assorted "glue code" to facilitate using it as
a desktop environment. It can be installed using `./install.sh` in the `session`
directory.