web-dev-qa-db-ja.com

ユニティランチャー(Ubuntu 14.04に存在する場合)および/またはxfceパネル(xubuntuの場合)を削除するシェルスクリプト

シェルスクリプトでユニティランチャー(Ubuntu 14.04に存在する場合)やxfceパネル(xubuntuの場合)を削除するだけです。

誰かが同じことについて考えているなら、私に知らせてください。

ありがとう

1
User2546

更新

スクリプトの実行時にランチャーを完全に削除するには、Unity Compizプラグインを無効にします。

このようなスクリプトが Checkbox にあります。便宜上、ここに貼り付けています。

#!/usr/bin/env python3
# This file is part of Checkbox.
#
# Copyright 2014-2015 Canonical Ltd.
# Written by:
#   Daniel Manrique <[email protected]>
#   Sylvain Pineau <[email protected]>
#
# Checkbox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3,
# as published by the Free Software Foundation.
#
# Checkbox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
"""
manage_compiz_plugin
====================

This script allows enabling or disabling compiz plugins using
gsettings. Changes take effect on the fly.
"""

from gettext import gettext as _
import argparse
import gettext
import os
import sys
import subprocess
import time

PATH="org.compiz.core:/org/compiz/profiles/unity/plugins/core/"
KEY="active-plugins"

gettext.textdomain("2013.com.canonical.certification.checkbox")
gettext.bindtextdomain("2013.com.canonical.certification.checkbox",
                       os.getenv("CHECKBOX_PROVIDER_LOCALE_DIR", None))

plugins = eval(subprocess.check_output(["gsettings", "get", PATH, KEY]))

parser = argparse.ArgumentParser(description=_("enable/disable compiz plugins"),
                                 epilog=_("Available plugins: {}").format(plugins))
parser.add_argument("plugin", type=str, help=_('Name of plugin to control'))
parser.add_argument("action", type=str, choices=['enable', 'disable'],
                    help=_("What to do with the plugin"))

args = parser.parse_args()

if args.action == 'enable':
    if args.plugin in plugins:
        raise SystemExit(_("Plugin {} already enabled").format(args.plugin))
    plugins.append(args.plugin)
else:
    if args.plugin not in plugins:
        raise SystemExit(_("Plugin {} doesn't exist").format(args.plugin))
    plugins.remove(args.plugin)
subprocess.call(["gsettings", "set", PATH, KEY, str(plugins)])

time.sleep(3)

Unityプラグインを無効にするには:

./manage_compiz_plugin unityshell disable

それを復元するには:

./manage_compiz_plugin unityshell enable

最初のバージョン(自動非表示を使用):

ユニティランチャーを非表示にするには、次のコマンドを使用します。

dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode 1
dconf write /org/compiz/profiles/unity/plugins/unityshell/Edge-responsiveness 0

復元するには、次のコマンドを使用します。

dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode 0
dconf write /org/compiz/profiles/unity/plugins/unityshell/Edge-responsiveness 2
2
Sylvain Pineau

ランチャーなしでユニティを再コンパイルするスクリプトを探している場合、これはまさにあなたが望むものです: ランチャーなしでUnityをコンパイルする

0
JLTD