⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 run_pixil.sh.in

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 IN
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -