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