mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-04-06 04:50:13 +01:00
* increase synergy between scripts * Fix newlines Fix packagers etc * fix an issue with no new line being created * fix formatting Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * fix extra comma Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * change to () Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * change to () Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * change to () Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * change to () Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * remove extra comma Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * remove "please" Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * add support for caps Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * add support for caps Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * add support for caps Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * remove \n and make the default option "N" Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * add an extra quote Co-authored-by: Adam Perkowski <adas1per@protonmail.com> * add extra quotes * fix remaining sn * fix remaining new lines --------- Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com> Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
175 lines
6.0 KiB
Bash
175 lines
6.0 KiB
Bash
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
# Function to list common session options
|
|
list_sessions() {
|
|
printf "%b\n" "Select the session:"
|
|
printf "%b\n" "1) GNOME (gnome.desktop)"
|
|
printf "%b\n" "2) KDE Plasma (plasma.desktop)"
|
|
printf "%b\n" "3) XFCE (xfce.desktop)"
|
|
printf "%b\n" "4) LXDE (LXDE.desktop)"
|
|
printf "%b\n" "5) LXQt (lxqt.desktop)"
|
|
printf "%b\n" "6) Cinnamon (cinnamon.desktop)"
|
|
printf "%b\n" "7) MATE (mate.desktop)"
|
|
printf "%b\n" "8) Openbox (openbox.desktop)"
|
|
printf "%b\n" "9) i3 (i3.desktop)"
|
|
printf "%b\n" "10) Custom session"
|
|
printf "%b" "Enter your choice (1-10): "
|
|
read -r session_choice
|
|
|
|
case "$session_choice" in
|
|
1) session="gnome.desktop" ;;
|
|
2) session="plasma.desktop" ;;
|
|
3) session="xfce.desktop" ;;
|
|
4) session="LXDE.desktop" ;;
|
|
5) session="lxqt.desktop" ;;
|
|
6) session="cinnamon.desktop" ;;
|
|
7) session="mate.desktop" ;;
|
|
8) session="openbox.desktop" ;;
|
|
9) session="i3.desktop" ;;
|
|
10)
|
|
printf "%b" "Enter custom session name (e.g., mysession.desktop): "
|
|
read -r session ;;
|
|
*)
|
|
printf "%b\n" "Invalid option selected."
|
|
exit 1 ;;
|
|
esac
|
|
}
|
|
|
|
# Function to configure LightDM
|
|
configure_lightdm() {
|
|
printf "%b\n" "Configuring LightDM for autologin..."
|
|
printf "%b" "Enter username for LightDM autologin: "
|
|
read -r user
|
|
|
|
"$ESCALATION_TOOL" "printf '[Seat:*]' > /etc/lightdm/lightdm.conf.d/50-autologin.conf"
|
|
"$ESCALATION_TOOL" "printf 'autologin-user=$user' >> /etc/lightdm/lightdm.conf.d/50-autologin.conf"
|
|
"$ESCALATION_TOOL" "printf 'autologin-user-timeout=0' >> /etc/lightdm/lightdm.conf.d/50-autologin.conf"
|
|
|
|
printf "%b\n" "LightDM has been configured for autologin."
|
|
}
|
|
|
|
# Function to remove LightDM autologin
|
|
remove_lightdm_autologin() {
|
|
printf "%b\n" "Removing LightDM autologin configuration..."
|
|
"$ESCALATION_TOOL" rm -f /etc/lightdm/lightdm.conf.d/50-autologin.conf
|
|
printf "%b\n" "LightDM autologin configuration has been removed."
|
|
}
|
|
|
|
# Function to configure GDM
|
|
configure_gdm() {
|
|
printf "%b\n" "Configuring GDM for autologin..."
|
|
printf "%b" "Enter username for GDM autologin: "
|
|
read -r user
|
|
|
|
"$ESCALATION_TOOL" "printf '[daemon]' > /etc/gdm/custom.conf"
|
|
"$ESCALATION_TOOL" "printf 'AutomaticLoginEnable = true' >> /etc/gdm/custom.conf"
|
|
"$ESCALATION_TOOL" "printf 'AutomaticLogin = $user' >> /etc/gdm/custom.conf"
|
|
|
|
printf "%b\n" "GDM has been configured for autologin."
|
|
}
|
|
|
|
# Function to remove GDM autologin
|
|
remove_gdm_autologin() {
|
|
printf "%b\n" "Removing GDM autologin configuration..."
|
|
"$ESCALATION_TOOL" sed -i '/AutomaticLoginEnable/d' /etc/gdm/custom.conf
|
|
"$ESCALATION_TOOL" sed -i '/AutomaticLogin/d' /etc/gdm/custom.conf
|
|
printf "%b\n" "GDM autologin configuration has been removed."
|
|
}
|
|
|
|
# Function to configure SDDM
|
|
configure_sddm() {
|
|
printf "%b\n" "Configuring SDDM for autologin..."
|
|
printf "%b" "Enter username for SDDM autologin: "
|
|
read -r user
|
|
list_sessions # Show session options
|
|
|
|
"$ESCALATION_TOOL" "printf '[Autologin]' > /etc/sddm.conf"
|
|
"$ESCALATION_TOOL" "printf 'User=$user' >> /etc/sddm.conf"
|
|
"$ESCALATION_TOOL" "printf 'Session=$session' >> /etc/sddm.conf"
|
|
|
|
printf "%b\n" "SDDM has been configured for autologin."
|
|
}
|
|
|
|
# Function to remove SDDM autologin
|
|
remove_sddm_autologin() {
|
|
printf "%b\n" "Removing SDDM autologin configuration..."
|
|
"$ESCALATION_TOOL" sed -i '/\[Autologin\]/,+2d' /etc/sddm.conf
|
|
printf "%b\n" "SDDM autologin configuration has been removed."
|
|
}
|
|
|
|
# Function to configure LXDM
|
|
configure_lxdm() {
|
|
printf "%b\n" "Configuring LXDM for autologin..."
|
|
printf "%b" "Enter username for LXDM autologin: "
|
|
read -r user
|
|
list_sessions # Show session options
|
|
|
|
"$ESCALATION_TOOL" sed -i "s/^#.*autologin=.*$/autologin=${user}/" /etc/lxdm/lxdm.conf
|
|
"$ESCALATION_TOOL" sed -i "s|^#.*session=.*$|session=/usr/bin/${session}|; s|^session=.*$|session=/usr/bin/${session}|" /etc/lxdm/lxdm.conf
|
|
|
|
printf "%b\n" "LXDM has been configured for autologin."
|
|
}
|
|
|
|
# Function to remove LXDM autologin
|
|
remove_lxdm_autologin() {
|
|
printf "%b\n" "Removing LXDM autologin configuration..."
|
|
"$ESCALATION_TOOL" sed -i "s/^autologin=.*$/#autologin=/" /etc/lxdm/lxdm.conf
|
|
"$ESCALATION_TOOL" sed -i "s/^session=.*$/#session=/" /etc/lxdm/lxdm.conf
|
|
printf "%b\n" "LXDM autologin configuration has been removed."
|
|
}
|
|
|
|
# Function to configure or remove autologin based on user choice
|
|
configure_or_remove_autologin() {
|
|
printf "%b\n" "Do you want to add or remove autologin?"
|
|
printf "%b\n" "1) Add autologin"
|
|
printf "%b\n" "2) Remove autologin"
|
|
printf "%b" "Enter your choice (1-2): "
|
|
read -r action_choice
|
|
|
|
if [ "$action_choice" = "1" ]; then
|
|
printf "%b\n" "Choose the display manager to configure:"
|
|
printf "%b\n" "1) LightDM"
|
|
printf "%b\n" "2) GDM"
|
|
printf "%b\n" "3) SDDM"
|
|
printf "%b\n" "4) LXDM"
|
|
printf "%b" "Enter your choice (1-4): "
|
|
read -r choice
|
|
|
|
case "$choice" in
|
|
1) configure_lightdm ;;
|
|
2) configure_gdm ;;
|
|
3) configure_sddm ;;
|
|
4) configure_lxdm ;;
|
|
*) printf "%b\n" "Invalid option selected." ;;
|
|
esac
|
|
elif [ "$action_choice" = "2" ]; then
|
|
printf "%b\n" "Choose the display manager to remove autologin:"
|
|
printf "%b\n" "1) LightDM"
|
|
printf "%b\n" "2) GDM"
|
|
printf "%b\n" "3) SDDM"
|
|
printf "%b\n" "4) LXDM"
|
|
printf "%b" "Enter your choice (1-4): "
|
|
read -r choice
|
|
|
|
case "$choice" in
|
|
1) remove_lightdm_autologin ;;
|
|
2) remove_gdm_autologin ;;
|
|
3) remove_sddm_autologin ;;
|
|
4) remove_lxdm_autologin ;;
|
|
*) printf "%b\n" "Invalid option selected." ;;
|
|
esac
|
|
else
|
|
printf "%b\n" "Invalid choice. Exiting..."
|
|
exit 1
|
|
fi
|
|
|
|
printf "%b\n" "Action completed. Exiting..."
|
|
exit 0
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
configure_or_remove_autologin
|