From 1eef33bbc84270d71d4eca6498934c042a0e53cc Mon Sep 17 00:00:00 2001 From: odweta Date: Sat, 9 May 2026 10:51:04 +0200 Subject: [PATCH] add install script --- README.md | 18 ++++++++++++------ install.sh | 13 +++++++++++++ 2 files changed, 25 insertions(+), 6 deletions(-) create mode 100755 install.sh diff --git a/README.md b/README.md index 58b8fc0..a8d63af 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,18 @@ ## Components -- dwm -> window manager -- dmenu -> application launcher -- dwmblocks -> status bar -- st -> terminal -- slock -> screen lock ++ dwm -> window manager ++ dmenu -> application launcher ++ dwmblocks -> status bar ++ st -> terminal ++ slock -> screen lock ## 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` diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..7ebb597 --- /dev/null +++ b/install.sh @@ -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