dotfiles/gui/install.sh

27 lines
605 B
Bash
Raw Normal View History

2020-11-02 04:08:18 +00:00
#!/bin/sh
2020-09-17 10:24:35 +00:00
2020-11-21 18:07:26 +00:00
set -e
2020-11-08 16:26:14 +00:00
DIR=$(dirname "$(readlink -f "$0")")
2020-11-02 04:08:18 +00:00
. "$DIR/../env.sh"
2020-09-17 10:24:35 +00:00
2020-11-21 18:07:26 +00:00
if [ "$PM" = "apt" ]; then
sudo systemctl disable systemd-networkd-wait-online
sudo systemctl mask systemd-networkd-wait-online
sudo systemctl disable cloud-init
sudo systemctl mask cloud-init
sudo systemctl disable cloud-config
sudo systemctl mask cloud-config
sudo systemctl disable gdm3
sudo systemctl mask gdm3
fi
2020-09-17 10:24:35 +00:00
2020-11-21 18:07:26 +00:00
. "$DIR/autologin.sh"
. "$DIR/suspendlock.sh"
. "$DIR/font.sh"
. "$DIR/sysutils.sh"
. "$DIR/picom.sh"
. "$DIR/office.sh"
. "$DIR/player.sh"
. "$DIR/theme.sh"
. "$DIR/suckless.sh"