dwmbar/install.sh

26 lines
544 B
Bash
Raw Normal View History

#!/bin/bash
DWMBAR="/usr/bin/dwmbar"
2019-10-22 00:12:33 +00:00
if [ "$EUID" -ne 0 ]
then echo "Please run as root" > /dev/stderr
exit 1
2019-10-22 00:12:33 +00:00
fi
if [[ ! -f "dwmbar" ]]; then
echo "dwmbar executable not found." > /dev/stderr
exit 1
fi
# Create /usr/share/dwmbar
# Containing example dwmbarrc and modules
mkdir --parents "/usr/share/dwmbar/"
cp -r "./modules" "/usr/share/dwmbar/modules"
cp -r "./dwmbarrc" "/usr/share/dwmbar/dwmbarrc"
echo "./dwmbar --> /usr/bin/dwmbar"
cp "./dwmbar" "/usr/bin/dwmbar"
[[ $? -eq 0 ]] && echo "Installation completed successfully"