add install script

This commit is contained in:
odweta
2026-05-09 10:51:04 +02:00
parent c36acf998f
commit 1eef33bbc8
2 changed files with 25 additions and 6 deletions
+12 -6
View File
@@ -2,12 +2,18 @@
## Components ## Components
- dwm -> window manager + dwm -> window manager
- dmenu -> application launcher + dmenu -> application launcher
- dwmblocks -> status bar + dwmblocks -> status bar
- st -> terminal + st -> terminal
- slock -> screen lock + slock -> screen lock
## Theme ## Theme
- Dracula + Dracula
## Usage
1. Clone with: `git clone https://gitlab.com/odweta/suckless $HOME/.config/suckless`
2. Change into that directory with `cd $HOME/.config/suckless`
3. Install with `sudo make install`
Executable
+13
View File
@@ -0,0 +1,13 @@
#1/usr/bin/env bash
install_module() {
cd $1
sudo make install clean
cd -
}
install_module dmenu
install_module dwm
install_module dwmblocks
install_module slock
install_module st