You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
391 B
Bash

#!/bin/bash
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root!"
exit 1
else
cd src
mkdir -p /usr/{bin,share/cdm}
install -m755 cdm /usr/bin/
install -Dm644 cdmrc /etc/cdmrc
cp -Rf skel themes /usr/share/cdm/
echo "CDM configuration is done through /etc/cdmrc"
echo "Replace ~/.xinitrc and ~/.bash_profile with the files in /usr/share/cdm/skel for each user."
fi