#!/bin/sh #----------------------------------- # Name: install-dmenu-inkletblot # Version: 1.0.0 # Author: Solomon Laing # Description: # Installs my customisation of dmenu #----------------------------------- clear if command -v dmenu &> /dev/null; then echo "dmenu is already installed on the system." exit 0 fi echo "This script is going to install dmenu, my fork of dmenu with my custom styling. As such it will ask for root privilages." read -r -p "Are you sure you want to continue? [Y/n] " input case $input in [nN][oO] | [nN]) exit 0 ;; *) echo "The program will continue..." ;; esac cd /tmp git clone https://gitlab.inkletblot.com/inkletblot/dmenu-inkletblot cd dmenu-inkletblot git checkout config sudo -S make clean install if ! command -v dmenu &> /dev/null; then echo "dmenu failed to install, please manually rectify this and then rerun this setup with: ./setup install-dmenu" exit 1 fi exit 0