summaryrefslogtreecommitdiff
path: root/config/chroot_local-includes/lib/live/config/9023-kwayland
blob: 152f32ff9c7be602782e60e4ab2bbbd1511c6b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

Kwayland ()
{
	# Checking if configured
	if [ -e /var/lib/live/config/kwayland ]
	then
		return
	fi
	echo -n " kwayland"
	Configure_kwayland
}
Configure_kwayland ()
{
	# Boot parameters can be acted up either this way...
	if grep -qs "kwayland" /proc/cmdline
	then
	    if [ -x /usr/bin/startplasma-wayland ]; then
		echo "[Desktop]" >/home/${LIVE_USERNAME}/.dmrc
		echo "Session=plasmawayland" >>/home/${LIVE_USERNAME}/.dmrc
		chown 1000:1000 /home/${LIVE_USERNAME}/.dmrc
		echo "[Seat:*]" >> /usr/share/lightdm/lightdm.conf.d/51_kanotix.conf
		echo "user-session=plasmawayland" >> /usr/share/lightdm/lightdm.conf.d/51_kanotix.conf
	    fi
	fi
	
	# Creating state file
	touch /var/lib/live/config/kwayland
}

Kwayland