web-dev-qa-db-ja.com

18.04でYaru Gnome Shellテーマを使用

GithubのYaruリポジトリにはgnome-Shellフォルダーがあります

https://github.com/ubuntu/yaru/tree/master/gnome-Shell

ビルドして、Ubuntu 18.04でusr/share/themesまたは.themesフォルダーからYaru Gnome Shellテーマを使用できますか?

複雑にした場合、Yaru repoにはgnome Shellテーマフォルダーがあり、18.04で動作しますか?はいの場合、方法を教えてください。ありがとう。

3
user227495

リンク https://github.com/ubuntu/yar は、引用の下の一部で「ソースからのインストールは平均的な使用には推奨されていません!」と述べています

UbuntuでYaruを使用する

YaruテーマスイートはUbuntu 18.10以降でデフォルトでインストールされます!それを使用するために追加の手順は必要ありません。

ソースからのインストールは、平均的な使用には推奨されません!スナップインストールによるUbuntu 18.04(バイオニックビーバー)でレガシーYaru/Communithemeバージョンを使用する

Note that for backward compatibility, we kept the name "communitheme" for bionic beaver. 

アイコンとサウンドの更新のみが、このバージョンのテーマスイートにプッシュされます。

これらの手順はUbuntu 18.04(バイオニックビーバー)でのみ機能します。 18.10以上のインストールにはスナップをインストールしないでください!

Communithemeをインストールして有効にするには、次の手順に従います。

Install the communitheme snap on 18.04 by installing communitheme in the Ubuntu Software Application or running snap install communitheme.

Restart your computer.

Click on your user, click on the gear icon and select the "Ubuntu with communitheme snap" session from the pop-up, and login.

Now Ubuntu is using the communitheme including the system, applications, icons, sounds and the cursor.

ソースからのインストール:

ライブISOとUbuntu 18.04の実行中のインストールで試してみました。どちらの場合も..ソースからビルドするには、これらのパッケージが必要であることが確認されています。

mesonsasscpkg-configlibglib2.0-dev

以下のコマンドで必要なパッケージをインストールしてください。

Sudo apt install meson sassc pkg-config libglib2.0-dev

このリンクからファイルをダウンロードしてください https://github.com/ubuntu/yaru/archive/master.Zip

それを抽出します。

enter image description here

enter image description here

次に、yaru.shディレクトリに以下のコンテンツを含む$HOMEという名前のスクリプトを作成します。

#!/bin/bash

cd $HOME/Downloads/yaru-master
mkdir xyz $HOME/YaruBuiltFromSource
meson setup --prefix=$HOME/YaruBuiltFromSource xyz
ninja -C xyz
ninja -C xyz install

以下のコマンドを使用して、$HOMEディレクトリからスクリプトを実行します

/bin/bash yaru.sh

このスクリプトは、以下のように$HOME/YaruBuiltFromSourceディレクトリに必要なテーマ、つまりICONS、CURSOR、GTK、Shell、SOUNDなどを作成します。

他のテーマでも同様に、選択に基づいて(たとえば、アイコンテーマの場合)_$HOME/.iconsまたは$HOME/.local/share/iconsまたは/usr/share/iconsにコピーできます。

Yaru Shellテーマのシンボリックリンクを使用していたずらをする必要があることに注意してください。

enter image description here

enter image description here

enter image description here

3
PRATAP