aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 1d9521d384986742516891efb552f7782efeef8f (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
65
66
67
68
69
70
71
72
73
74
75
76
77
# suckless-setup

My personal suckless setup.

- Rosé Pine color scheme and JetBrainsMono Nerd Font by default (colors from [Rosé Pine for st](https://github.com/rose-pine/st))
- General purpose keybindings:
    - Alt+Shift+D: Opens Discord
    - Alt+Shift+F: Opens Zen Browser
    - PrtScr: Opens Flameshot

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

## Installation

### Manual

Clone the repo
```sh
git clone https://github.com/pml68/suckless-setup
cd suckless-setup/
```

Replace config files
```sh
sudo cp picom.conf /etc/xdg/picom.conf

# optional
cp neofetch -r ~/.config/
cp vis -r ~/.config/ # for https://github.com/dpayne/cli-visualizer

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
cp tmux -r ~/.config

# Start tmux, and install necessary plugins with C-a I
```

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

cd dmenu
sudo make clean install
# ...
```

Set the background
```sh
feh --bg-fill wallpaper.jpg
```

Update your .xinitrc file
```sh
# ...
~/.fehbg &
picom &
flameshot &
slstatus &
exec dwm
```

### Automated

Simply run the included script
```sh
chmod +x install.sh
./install.sh
```

# Screenshot:

![Screenshot](screenshot.png)