dwmbar/install.sh

45 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
# Copyright 2019 Archie Hilton <archie.hilton1@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
DWMBAR="/usr/bin/dwmbar"
2023-03-01 08:05:35 +00:00
#if [ "$EUID" -ne 0 ]
# then echo "Please run as root" > /dev/stderr
# exit 1
#fi
2019-10-22 00:12:33 +00:00
if [[ ! -f "dwmbar" ]]; then
echo "dwmbar executable not found." > /dev/stderr
exit 1
fi
2023-03-01 08:05:35 +00:00
# Create ~/.config/dwmbar
2019-10-24 14:31:03 +00:00
# Containing example bar.sh and modules
2023-03-01 08:05:35 +00:00
DWMBAR_CONF="/home/$USER/.config/dwmbar"
mkdir -pv $DWMBAR_CONF
2023-03-01 08:05:35 +00:00
cp -vrfT "./modules" "$DWMBAR_CONF/modules"
2023-03-01 08:05:35 +00:00
cp -vf "./bar.sh" "$DWMBAR_CONF/bar.sh"
2023-03-01 08:05:35 +00:00
cp -vr "./config" "$DWMBAR_CONF/config"
2023-03-01 08:05:35 +00:00
sudo cp -vf "./dwmbar" $DWMBAR
[[ $? -eq 0 ]] && echo "Installation completed successfully"