29 lines
772 B
Bash
Executable File
29 lines
772 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#-----------------------------------
|
|
# Name: dwm
|
|
# Version: 1.0.0
|
|
# Author: Solomon Laing
|
|
# Description:
|
|
# Installs my customisation of dwm
|
|
#-----------------------------------
|
|
|
|
if command -v dwm &>/dev/null; then
|
|
echo "dwm is already installed on the system."
|
|
exit 0
|
|
fi
|
|
|
|
echo "This script is going to install my fork of dwm with my custom styling. As such it will ask for root privilages."
|
|
|
|
git clone https://gitlab.inkletblot.com/inkletblot/dwm-inkletblot "$HOME/repos/gitlab.inkletblot.com/inkletblot/dwm-inkletblot"
|
|
cd "$HOME/repos/gitlab.inkletblot.com/inkletblot/dwm-inkletblot" || exit 1
|
|
git checkout config
|
|
sudo -S make clean install
|
|
|
|
if ! command -v dwm &>/dev/null; then
|
|
echo "dwm failed to install"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|