You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
#!/bin/bash |
|
#set -e |
|
############################################################################### |
|
# Author : Erik Dubois |
|
# Website : https://www.erikdubois.be |
|
# Website : https://www.arcolinux.info |
|
# Website : https://www.arcolinux.com |
|
# Website : https://www.arcolinuxd.com |
|
# Website : https://www.arcolinuxb.com |
|
# Website : https://www.arcolinuxiso.com |
|
# Website : https://www.arcolinuxforum.com |
|
############################################################################### |
|
# |
|
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. |
|
# |
|
############################################################################### |
|
|
|
package=gdm |
|
if pacman -Qs $package > /dev/null ; then |
|
ln -sf /usr/lib/systemd/system/gdm.service /etc/systemd/system/display-manager.service |
|
fi |
|
package=lxdm |
|
if pacman -Qs $package > /dev/null ; then |
|
ln -sf /usr/lib/systemd/system/lxdm.service /etc/systemd/system/display-manager.service |
|
fi |
|
package=lightdm |
|
if pacman -Qs $package > /dev/null ; then |
|
ln -sf /usr/lib/systemd/system/lightdm.service /etc/systemd/system/display-manager.service |
|
fi |
|
package=sddm |
|
if pacman -Qs $package > /dev/null ; then |
|
ln -sf /usr/lib/systemd/system/sddm.service /etc/systemd/system/display-manager.service |
|
fi
|
|
|