Minor install.sh cleanup
This commit is contained in:
parent
36d8fe4d61
commit
7c2aa492a3
39
install.sh
39
install.sh
@ -1,53 +1,42 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -eu
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
|
|
||||||
run_as_user() {
|
run_as_user() {
|
||||||
echo "Run with user $1: ${@:2}"
|
echo "Run with user $1: ${@:2}"
|
||||||
sudo -u $@
|
sudo -u "$@"
|
||||||
}
|
}
|
||||||
set -e
|
set -e
|
||||||
link_with_bkp() {
|
link_with_bkp() {
|
||||||
SRC=$2
|
SRC=$2
|
||||||
DEST=$3
|
DEST=$3
|
||||||
USER=$1
|
USER=$1
|
||||||
if [ -d $DEST ]; then
|
if [ -d "$DEST" ]; then
|
||||||
DEST=$DEST/$(basename $SRC)
|
DEST="$DEST/$(basename "$SRC")"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f $SRC ]; then
|
if [ ! -f "$SRC" ]; then
|
||||||
echo "$SRC is not a file";
|
echo "$SRC is not a file";
|
||||||
return -1;
|
return 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -e $DEST ] || [ -L $DEST ]; then
|
if [ -e "$DEST" ] || [ -L "$DEST" ]; then
|
||||||
if [ "$SRC" -ef "$(readlink $DEST)" ]; then
|
if [ "$SRC" -ef "$(readlink "$DEST")" ]; then
|
||||||
echo "$DEST is correctly linked"
|
echo "$DEST is correctly linked"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
if [ -f $DEST.old ]; then
|
if [ -f "$DEST.old" ]; then
|
||||||
echo "$DEST.old exists. Cannot create backup."
|
echo "$DEST.old exists. Cannot create backup."
|
||||||
return -1;
|
return 1;
|
||||||
fi
|
fi
|
||||||
echo "$DEST will be moved to $DEST.old"
|
echo "$DEST will be moved to $DEST.old"
|
||||||
run_as_user $USER mv $DEST $DEST.old
|
run_as_user "$USER" mv "$DEST" "$DEST.old"
|
||||||
fi
|
fi
|
||||||
echo "$DEST will now be linked."
|
echo "$DEST will now be linked."
|
||||||
run_as_user $USER ln -s $SRC $DEST
|
run_as_user "$USER" ln -s "$SRC" "$DEST"
|
||||||
}
|
}
|
||||||
|
|
||||||
ryzen=""
|
|
||||||
|
|
||||||
xps15=""
|
|
||||||
|
|
||||||
specific_files=""
|
|
||||||
|
|
||||||
cpu_name="$(lscpu | grep "Model name" | cut -f2 -d: | xargs)"
|
|
||||||
|
|
||||||
if [ "$cpu_name" == "Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz" ]; then
|
|
||||||
echo "It's my XPS15"
|
|
||||||
specific_files=$xps15
|
|
||||||
fi
|
|
||||||
|
|
||||||
terminal_only="\
|
terminal_only="\
|
||||||
.oh-my-zsh/themes/oke.zsh-theme \
|
.oh-my-zsh/themes/oke.zsh-theme \
|
||||||
.zshrc \
|
.zshrc \
|
||||||
@ -70,7 +59,7 @@ workstation="\
|
|||||||
etc/acpi/volume.sh:/:root \
|
etc/acpi/volume.sh:/:root \
|
||||||
usr/share/X11/xorg.conf.d/40-libinput.conf:/:root"
|
usr/share/X11/xorg.conf.d/40-libinput.conf:/:root"
|
||||||
|
|
||||||
mode="$@"
|
mode="$1"
|
||||||
|
|
||||||
if [[ "$mode" =~ "all" ]]; then
|
if [[ "$mode" =~ "all" ]]; then
|
||||||
mode="workstation terminal"
|
mode="workstation terminal"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user