run_pixil.sh.in

来自「PIXIL is a small footprint operating env」· IN 代码 · 共 55 行

IN
55
字号
#!/bin/sh# run_pixil.sh# Copyright 2003, Century Embedded Technologies# Released under the GPL. # # This script installs all the nessesary daemons and scripts# to run Pixil in a Redhat 7.3 environment. BASE_DIR=@installdir@export LD_LIBRARY_PATH=$BASE_DIR/libexport PARDB=$BASE_DIR/share/par/pixil.dbexport MWFONTDIR=$BASE_DIR/share/fonts/MWDIR=@mwdir@# Verify that everything existsif [ ! -x "$MWDIR/bin/nano-X" ]; then     echo "Oops - no nano-X binary exists.  Bailing..."    exit 1fi# Sanity check - don't allow colosseum to already be # started when we enter here CLPID=`pidof clserver`if [ -n "$CLPID" ]; then    kill $CLPIDfi# The PAR database needs to be encoded the first time we # run itif [ ! -f $BASE_DIR/share/par/pixil.db ]; then 	$BASE_DIR/sbin/xmlimport -i $BASE_DIR/share/par/defaults.xml \	$BASE_DIR/share/par/pixil.dbfi# Start the colosseum server$BASE_DIR/sbin/clserver &# Start the Nano-X server$MWDIR/bin/nano-X -e -x 240 -y 320 &# Fire up the Pixil window manager# This represents the end of the startup process$BASE_DIR/bin/pixilwm ## Welcome back  Shut down pending daemonskillall -TERM -q $BASE_DIR/sbin/clserver 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?