aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpml68 <pml31@protonmail.com>2024-01-30 10:43:35 +0100
committerpml68 <pml31@protonmail.com>2024-01-30 10:43:35 +0100
commit5465fc510226ed0b412e54e672a357613726461c (patch)
tree6e8dbaad665a25f821ef89b8a15a5e4eebf7022f
parentfeat: add neofetch config (diff)
downloadsuckless-setup-5465fc510226ed0b412e54e672a357613726461c.tar.gz
feat: add instructions
Diffstat (limited to '')
-rw-r--r--README.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4685109..97a20d5 100644
--- a/README.md
+++ b/README.md
@@ -7,3 +7,42 @@ My personal suckless setup.
- Alt+Shift+D: Opens Discord
- Alt+Shift+F: Opens Firefox
- PrtScr: Opens Flameshot
+
+## Installation
+Install necessary packages (Arch Linux specific, other distros will differ)
+```sh
+sudo pacman -S picom feh flameshot ttf-jetbrains-mono-nerd
+```
+
+Clone the repo
+```sh
+git clone https://github.com/pml68/suckless-setup
+cd suckless-setup/
+```
+
+Replace config files
+```sh
+sudo mv picom.conf /etc/xdg/picom.conf
+
+# optional
+mv neofetch/config.conf ~/.config/neofetch/config.conf
+```
+
+Build and install each program manually or with the included script
+```sh
+./install.sh
+```
+
+Set the background
+```sh
+feh --bg-fill wallpaper.jpg
+```
+
+Update your .xinitrc file
+```sh
+# ...
+~/.fehbg &
+picom &
+slstatus &
+exec dwm
+``` \ No newline at end of file