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