#!/bin/bash help() { echo "Help:" echo " --help -h: Displays this help" echo " -r: Disables Evolution-Desktop at launch" echo " nothing: Enables Evolution-Desktop at launch" } if [[ "$1" = "" ]]; then drunner ln -s /etc/dinit.d/greetd /etc/dinit.d/boot.d/greetd ln -s /etc/dinit.d/evolution-desktop /etc/dinit.d/boot.d/evolution-desktop echo "Evolution-Desktop will now start at launch." elif [[ "$1" = "-h" ]]; then help elif [[ "$1" = "--help" ]]; then help elif [[ "$1" = "-r" ]]; then rm -f /etc/dinit.d/boot.d/greetd rm -f /etc/dinit.d/boot.d/evolution-desktop echo "Evolution-Desktop will no longer start at launch" else echo "Unregonised option. Use --help for help." fi