11 lines
143 B
Bash
Executable file
11 lines
143 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
. /lib/arci/arci.mod.sh
|
|
|
|
case "$1" in
|
|
start)
|
|
log 'Starting SDDM display manager'
|
|
sddm &
|
|
elog 'done'
|
|
;;
|
|
esac
|