在 xubuntu 中运行一个脚本,我的显示器崩溃了。有人能建议如何扭转这种局面吗?

在 xubuntu 中运行一个脚本,我的显示器崩溃了。有人能建议如何扭转这种局面吗?

不久前,我找到了一个脚本,用于加快安装 Minecraft 的速度……为我的孩子……无论如何,我最近换成了 Xubuntu,并认为相同的脚本应该没问题,无需考虑不同的桌面管理器。当我运行脚本时,“应用程序桌面意外关闭”,现在我的桌面只是一个灰色的。

我正在运行 xubuntu 12.04 64 位,配有 ati 显卡和 ati 驱动程序。如果需要任何其他信息,请随时询问。

我希望有人知道如何逆转脚本(如下)。

谢谢。

echo -ne "writing bin shell"
    # this writes a seperate shell script in the /usr/local/bin folder, this is what allows the user
    # to run minecraft from terminal, just by typing minecraft.
    dots
    if [ ! -e /usr/local/bin/minecraft ] 
    then
    touch minecraft
    echo java -jar /home/$(whoami)/.minecraft/minecraft.jar >> minecraft
    echo -ne saving to usr/local/bin
    dots
    echo this requires root access:
    sudo cp minecraft /usr/local/bin/
    cd /
    cd /usr/local/bin
    sudo chmod +x minecraft
    echo "done"
    else 
    echo excecutable already written
    fi
    echo ""
    #--------------------------------------------
    echo -ne writing desktop shortcut
    dots
    cd /home/$(whoami)/.minecraft/
    if [ -e /home/$(whoami)/.minecraft/install_files ] 
    then
    echo -ne previous version detected, updating
    dots
    rm -rf install_files
    fi
    mkdir install_files
    cd install_files

    touch alloc-installer.desktop
    echo "[Desktop Entry]" >> alloc-installer.desktop
    echo "Type=Application" >> alloc-installer.desktop
    echo "Encoding=UTF-8" >> alloc-installer.desktop
    echo "Name=Minecraft" >> alloc-installer.desktop
    echo "Comment=awesome game" >> alloc-installer.desktop
    echo Exec= java -jar /home/$(whoami)/.minecraft/minecraft.jar >> alloc-installer.desktop
    echo Icon= /home/$(whoami)/.minecraft/icon.png  >> alloc-installer.desktop
    echo Categories=Game >> alloc-installer.desktop
    echo "Terminal=false" >> alloc-installer.desktop
    #----------------------------------------------------
    echo -ne granting the shortcut excecution permissions
    dots
    echo this requires root access
    cp alloc-installer.desktop /home/$(whoami)/Desktop
    sudo chmod +x /home/$(whoami)/Desktop/alloc-installer.desktop
    echo "done"
    echo ""
    #---------------------------------------------
    echo -ne writing menu item
    dots
    touch alloc-menu.directory
    echo [Desktop Entry] >> alloc-menu.directory
    echo Value=1.0 >> alloc-menu.directory
    echo Type=Directory >> alloc-menu.directory
    echo Encoding=UTF-8 >> alloc-menu.directory
    echo "done"
    echo ""
    echo -ne installing to Applications menu
    dots
    xdg-desktop-menu install alloc-menu.directory alloc-installer.desktop
    xdg-desktop-menu forceupdate
    echo installed
    #--------------------------------------------
    echo ""
    echo "SUCCESS!"
    echo ""
    echo -e "Minecraft has been successfully Downloaded and Installed \nCheck your desktop and Applications menu for launchers! \nYou can also run it from terminal with a 'minecraft' command! \ncontact: [email protected]" 
    echo "Happy Mining!"

    echo""

编辑:谢谢 Mik。我尝试运行xfwm4 --replace (使用 sudo)并得到以下结果:

`(xfwm4:2025): GLib-CRITICAL **: g_str_has_prefix: assertion `prefix != NULL' failed

(xfwm4:2025): xfwm4-WARNING **: The property '/general/double_click_distance' of type int is not supported

(xfwm4:2025): GLib-WARNING **: (/build/buildd/glib2.0-2.32.3/./glib/gerror.c:390):g_error_new_valist: runtime check failed: (domain != 0)

(xfwm4:2025): xfwm4-WARNING **: Failed to connect to session manager: Failed to     connect to the session manager: SESSION_MANAGER environment variable not defined`

但屏幕还是灰的。可能明天就要重新安装,除非以上任何一点能给你提供其他线索?

相关内容