📄 go-gui
字号:
#!/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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -