aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 5c377df02e5c18fa5d8377d99b02059a933da0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# suckless-setup

My personal suckless setup.

## Dependencies

Install necessary packages (Arch Linux specific, other distros will differ)
```sh
sudo pacman -S ttf-jetbrains-mono-nerd libqalculate
```

It's also recommended to start dwm and other related software through xinit, my main [dotfiles repo](https://git.sr.ht/~pml68/dotfiles) contains the needed configurations.

### Optional dependencies

- `feh` and `picom`: for the wallpaper and compositing, respectively. The install script will detect their availability and install configurations accordingly.
- `firefox`, `simplemoji`, `flameshot`, `discord`, `pulsemixer`, `adb`: some keybinds launch these programs.

## Installation

### Automated

```sh
git clone https://git.sr.ht/~pml68/suckless-setup
cd suckless-setup

sudo make install
# OR
sudo make install-laptop

# optional
make wallpaper
```

### Manual

Build and install each suckless program
```sh
cd dwm
sudo make clean install
cd ..

cd dmenu
sudo make clean install
cd ..

# ...
```

#### Optional

Set the background (this is done by the `wallpaper` make job)
```sh
feh --bg-fill wallpaper.jpg
```

Copy over the picom configuration (this is done by both install make jobs)
```sh
sudo cp picom.conf /etc/xdg/picom.conf
```

# Screenshot:

![Screenshot](screenshot.png)