43 lines
918 B
Bash
Executable File
43 lines
918 B
Bash
Executable File
#!/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-inkletblot, my fork of dmenu with my custom styling. As such it will ask for root privilages."
|
|
|
|
read -r -p "Are You Sure? [y/N] " input
|
|
|
|
case $input in
|
|
[yY][eE][sS] | [yY])
|
|
echo "The program will continue..."
|
|
;;
|
|
[nN][oO] | [nN])
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Invalid input..."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
cd dmenu-inkletblot
|
|
sudo -S make clean install
|
|
|
|
if ! command -v dmenu &> /dev/null; then
|
|
echo "dmenu-inkletblot failed to install, please manually rectify this and then rerun this setup with: ./setup deps"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0 |