ukui-screensaver/data/ukui-greeter/lightdm-session-setup.sh

16 lines
376 B
Bash
Raw Normal View History

2023-11-16 16:11:18 +08:00
#!/bin/sh
if [ "$XDG_SESSION_TYPE" != "wayland" ]; then
bootinfo=$(cat /proc/cmdline | grep "boot=casper")
if [ ! "$bootinfo" = "" ]; then
echo "This is Try or install mode!"
else
username=`whoami`
if [ -x "$(command -v save-param)" ]; then
save-param -u $username
fi
fi
else
echo "Session type is wayland!"
fi