From 3a7672b4cf8b417bc726f3b7869e23e0af2f083e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 11 Mar 2016 19:49:13 +0000 Subject: cleanup everything --- Makefile | 3 --- bashlogin | 6 ------ calamares.desktop | 12 ------------ graphical_start.service | 12 ------------ graphical_start.sh | 16 ---------------- 5 files changed, 49 deletions(-) delete mode 100644 bashlogin delete mode 100644 calamares.desktop delete mode 100644 graphical_start.service delete mode 100644 graphical_start.sh diff --git a/Makefile b/Makefile index 50342ef..0ac7814 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,6 @@ install: for d in $(SUBDIRS); do $(MAKE) -C $$d install; done install -d $(DESTDIR)/$(LIBEXECDIR) - install -m 0755 graphical_start.sh ${DESTDIR}/${LIBEXECDIR}/ install -d $(DESTDIR)/$(SBINDIR) install -d $(DESTDIR)/$(BINDIR) @@ -29,7 +28,5 @@ install: install -d $(DESTDIR)/$(UBINDIR) install -d $(DESTDIR)/$(SYSCONFDIR)/kogaion - install -m 0644 calamares.desktop $(DESTDIR)/$(SYSCONFDIR)/kogaion install -d $(DESTDIR)/$(SYSTEMD_UNITDIR)/ - install -m 0644 *.service $(DESTDIR)/$(SYSTEMD_UNITDIR)/ diff --git a/bashlogin b/bashlogin deleted file mode 100644 index 3468918..0000000 --- a/bashlogin +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -cat /etc/motd 2>/dev/null -cd /root -[[ -e .bash_profile ]] && source .bash_profile -exec -l /bin/bash -i diff --git a/calamares.desktop b/calamares.desktop deleted file mode 100644 index 8d450c8..0000000 --- a/calamares.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Calamares -GenericName=System Installer -TryExec=calamares -Exec=pkexec /usr/bin/calamares -Comment=Calamares — System Installer -Icon=start-here -Terminal=false -StartupNotify=false -Categories=Qt;System; diff --git a/graphical_start.service b/graphical_start.service deleted file mode 100644 index 6def328..0000000 --- a/graphical_start.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=Graphical Starter Config File -After=kogaionlive.service - -[Service] -Type=oneshot -RemainAfterExit=false -ExecStart=/usr/libexec/graphical_start.sh - -[Install] -Alias=graphical_start.service -WantedBy=multi-user.target diff --git a/graphical_start.sh b/graphical_start.sh deleted file mode 100644 index a63bc5f..0000000 --- a/graphical_start.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - - -if [ -n "$(equo match --installed gnome-base/gdm -qv)" ]; then - systemctl start gdm -elif [ -n "$(equo match --installed lxde-base/lxdm -qv)" ]; then - systemctl start lxdm -elif [ -n "$(equo match --installed x11-misc/lightdm-base -qv)" ]; then - systemctl start lightdm -elif [ -n "$(equo match --installed kde-base/kdm -qv)" ]; then - systemctl start kdm -elif [ -n "$(equo match --installed x11-misc/slim -qv)" ]; then - systemctl start slim -else - systemctl start xdm -fi -- cgit v1.2.3