diff options
author | monosans <hsyqixco@protonmail.com> | 2022-04-03 12:56:32 +0300 |
---|---|---|
committer | monosans <hsyqixco@protonmail.com> | 2022-05-26 17:02:19 +0300 |
commit | aefdd9cca144810f4b012b0a0ec5fdd4576df4d8 (patch) | |
tree | c9e7ed41584fa8c326ef8e5ce61f2fe51b782d50 /README.md | |
parent | 0ac09e05a0696a65685a6f6577d18f8ce9a7f5a0 (diff) |
Add PKGBUILD and update Arch installation guide
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 33 |
1 files changed, 31 insertions, 2 deletions
@@ -23,10 +23,39 @@ I haven't kept `man dwm`/`dwm.1` updated though. PRs welcome on that, lol. - [vanitygaps](https://dwm.suckless.org/patches/vanitygaps/): Gaps allowed across all layouts. - [swallow patch](https://dwm.suckless.org/patches/swallow/): if a program run from a terminal would make it inoperable, it temporarily takes its place to save space. -## Installation for newbs +## Installation on Arch Linux based distributions + +### Download the source code + +```bash +git clone https://github.com/LukeSmithxyz/dwm.git +cd dwm +``` + +### Configure + +To use a custom `config.h`, place it in the package directory. + +### Compile and install +To compile dwm you need to install the `base-devel` package group if you haven't done it previously. + +If you have `paru` installed: + +```bash +paru -Ui +``` + +Otherwise: + +```bash +makepkg -cirs ``` -git clone https://github.com/LukeSmithxyz/dwm + +## Installation for newbs + +```bash +git clone https://github.com/LukeSmithxyz/dwm.git cd dwm sudo make install ``` |