web-dev-qa-db-ja.com

Docky:LXDEにメニュー効果がない

LXDEを使用していたとき、Dockyにはメニューアニメーションがないことに気付きました。それから私はこのメッセージを得た: (docky needs the desktop effects enabled to work properly. some options are disabled and themes and animations will appear "incorrectly" says the balloon in the upper right corner of the screen) (dockyではデスクトップエフェクトを有効にする必要があります。一部のオプションが無効になり、テーマやアニメーションが画面の右上隅にバルーンを「間違って」表示します)これらのデスクトップエフェクトが有効になっているので、何が起こっているのですか? (はい、DockyはGNOMEで正しく動作しますが、lxdeとの互換性もあります)

2
RazorManager89

インストールxcompmgr

Sudo apt-get install xcompmgr

コマンドxcompmgr -nを追加して、自動起動します

これが機能しない場合は、comptonをインストールしてみてください。

Sudo apt-get install compton

次に、コンピューターを再起動し、dockyを実行し、次のコマンドを使用してcomptonを起動します

@compton -c -r 16 -l -24 -t -12 -G -b

(これが機能しない場合は、compton -c -r 16 -l -24 -t -12 -G -b && exitを実行してみてください)

コンプトンをスタートアップアプリケーションに追加するには、ターミナルを開いてコマンドを実行します

Sudo leafpad /etc/xdg/lxsession/Lubuntu/autostart

次に、@compton -c -r 16 -l -24 -t -12 -G -b行を追加します

2