XfceパネルをXubuntuが使用するデフォルト設定にリセットするにはどうすればよいですか?
XFCEは、実行中のセッションの構成をxfconfd
に保存します。最初に削除するファイルを自由にバックアップしてください。
xfce4-panel --quit
pkill xfconfd
を強制終了しますrm -rf ~/.config/xfce4/panel
rm -rf ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
の設定をクリアしますxfce4-panel
を実行します。これにより、xfconfd
が自動的に再生成されます。 xfconfdを手動で再起動する必要がある場合、または手動で再起動する必要がある場合は、インストール時に/usr/lib/x86_64-linux-gnu/xfce4/xfconf/xfconfd
が$PATH
の外側にあることを確認してください。これにより、実行中のセッションでファイルがクリアされ、ファイルが再生成され、将来のセッション用にデフォルトが設定されます。
xfce4-panel --quit ; pkill xfconfd ; rm -rf ~/.config/xfce4/panel ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml ; xfce4-panel;
私が言えることは、ただ実行するのが簡単になることだけです:
rm -r ~/.config/xfce4
その後、ログアウトして再度ログインします。これにより、xfce4
がデフォルトにリセットされます。特にSudo
コマンドを使用している場合は特に必要な場合を除き、-f
フラグを避けることをお勧めします。必要な最小限の力のみを使用することは常に良い考えです。
これにより、ユーザーが入力する必要のあるコマンドも制限されます。また、ファイルマネージャーを開き、[隠しファイルの表示]を選択して.configフォルダーに移動し、xfce4
フォルダーを右クリックして削除し、ログアウトしてから再度ログインできます。コマンドは必要ありません。
私の場合、パネル全体をデフォルトに切り替えたくありませんでしたが、最近Xubuntu 16.04から18.04にアップグレードしたため、デフォルトのレイアウトに切り替えたいだけでした パネルプラグインへの変更 =。
私がやったことは次のとおりです。
xfceにはxfconf-queryが付属しています。これは、次の内部のxml構成ファイルを処理するための強力なコマンドラインユーティリティです。
$HOME/.config/xfce4/xfconf/xfce-perchannel-xml/
。
Manページはありません(Fedoraのみですか?)が、利用可能なヘルプがあります:
$ xfconf-query -h
Usage:
xfconf-query [OPTION…] - Xfconf commandline utility
Help Options:
-h, --help Show help options
Application Options:
-V, --version Version information
-c, --channel The channel to query/modify
-p, --property The property to query/modify
-s, --set The new value to set for the property
-l, --list List properties (or channels if -c is not specified)
-v, --verbose Verbose output
-n, --create Create a new property if it does not already exist
-t, --type Specify the property value type
-r, --reset Reset property
-R, --recursive Recursive (use with -r)
-a, --force-array Force array even if only one element
-T, --toggle Invert an existing boolean property
-m, --monitor Monitor a channel for property changes
利用可能なチャンネルを一覧表示するには、xfconfを操作するためのGUIツールであるxfce4-settings-editorを開きます。または、xfconf-query -lを実行できます。
この知識を使用して、既存のすべてのxfconfプロパティを--resetまたは-rを介してデフォルトにリセットするスクリプトを作成できます
#!/usr/bin/env bash
while read channel
do
for property in $(xfconf-query -l -c $channel)
do
xfconf-query -c $channel -r -p $property
done
done < channels.txt
...
$ cat channels.txt
displays
ristretto
thunar
xfce4-desktop
xfce4-keyboard-shortcuts
xfce4-notifyd
xfce4-panel
xfce4-power-manager
xfce4-session
xfce4-settings-editor
xfce4-settings-manager
xfwm4
xsettings
またはわずかに良い(静的なチャンネルリストを必要としない):
#!/usr/bin/env bash
for channel in $(xfconf-query -l | grep -v ':' | tr -d "[:blank:]")
do
for property in $(xfconf-query -l -c $channel)
do
xfconf-query -c $channel -r -p $property
done
done