mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:37:44 +08:00
25 lines
271 B
Bash
Executable File
25 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Configuring video driver"
|
|
/opt/chakra/bin/xorg-config.sh
|
|
stat_done
|
|
;;
|
|
|
|
stop)
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
|
|
*)
|
|
echo "usage: $0 {start|stop|restart}"
|
|
esac
|