summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@rogentos.ro>2016-03-11 19:49:13 +0000
committerV3n3RiX <venerix@rogentos.ro>2016-03-11 19:49:13 +0000
commit3a7672b4cf8b417bc726f3b7869e23e0af2f083e (patch)
treeb11e61c58adc30a320565cd465f17e63486e577d
parent604d0fb412ec7b450c89cb726f3f3d1560e416fe (diff)
cleanup everything
-rw-r--r--Makefile3
-rw-r--r--bashlogin6
-rw-r--r--calamares.desktop12
-rw-r--r--graphical_start.service12
-rw-r--r--graphical_start.sh16
5 files changed, 0 insertions, 49 deletions
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