aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 0b0e58d3ca6cfa5c2d0df78ce6a735e57158d050 (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

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

Simply run the included script with root permissions.
```sh
chmod +x install
sudo ./install
```

### 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
```sh
feh --bg-fill wallpaper.jpg
```

Copy over the picom configuration
```sh
sudo cp picom.conf /etc/xdg/picom.conf
```

# Screenshot:

![Screenshot](screenshot.png)