?? go-gui
字號(hào):
#!/bin/sh# LIC: GPL#***********************************************************************## go-gui## Quick-start shell script to set up PPPoE and GUI wrapper## Copyright (C) 2000 Roaring Penguin Software Inc.## $Id: go-gui,v 1.5 2005/08/09 02:49:09 dfs Exp $#***********************************************************************# GUI only works on Linuxif test "`uname`" != "Linux" ; then echo "Sorry, the GUI only works on Linux." exit 1fi# Figure out directory of scriptMYDIR=`dirname $0`cd $MYDIR/srcecho "Running ./configure..."./configureif [ "$?" != 0 ] ; then echo "Oops! It looks like ./configure failed." exit 1fiecho "Running make..."makeif [ "$?" != 0 ] ; then echo "Oops! It looks like make failed." exit 1fiecho "Running make install..."make installif [ "$?" != 0 ] ; then echo "Oops! It looks like make install failed." exit 1fiecho "Building GUI wrapper..."cd ../guimakeif [ "$?" != 0 ] ; then echo "Oops! It looks like make failed." exit 1fiecho "Installing GUI..."make installif [ "$?" != 0 ] ; then echo "Oops! It looks like make install failed." exit 1fi# Install entry in KDE menuif test -n "$KDEDIR" ; then echo "Installing KDE menu entry Internet : TkPPPoE..." mkdir -p "$KDEDIR/share/applnk/Internet" cat <<EOF > "$KDEDIR/share/applnk/Internet/tkpppoe.kdelnk"# KDE Config File[KDE Desktop Entry]Name=TkPPPoEComment=Start/Stop PPPoE connectionsExec=tkpppoeTerminal=0Type=ApplicationEOFfi# Install entry in GNOME menusGNOMEDIR=`gnome-config --datadir 2>/dev/null`if test -n "$GNOMEDIR" ; then echo "Installing GNOME menu entry Internet : TkPPPoE..." mkdir -p "$GNOMEDIR/gnome/apps/Internet"cat <<EOF > "$GNOMEDIR/gnome/apps/Internet/tkpppoe.desktop"[Desktop Entry]Name=TkPPPoEComment=Start/Stop PPPoE connectionsExec=tkpppoeTerminal=0Type=ApplicationEOFfiecho "Running GUI configuration tool..."tkpppoe &exit 0
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -