Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Issue #18 Install failed on fresh Ubuntu 22.04 LTS #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ You'll need the `dconf` command (if you run a recent Gnome version). In Ubuntu,t
sudo apt-get install dconf-cli
```

You'll also need `dbus-x11`. In Ubuntu, this can be installed by running:

```bash
sudo apt-get install dbus-x11
```

In other distros you'll need to dig around to find it, search your repositories for **dconf** related packages.

After installing dconf, you can clone this repository to your machine.
Expand Down
3 changes: 3 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ set_profile_colors() {
local fg_color_file=$scheme_dir/fg_color
local bd_color_file=$scheme_dir/bd_color

dconfdir=$(echo "$dconfdir" | sed 's:/*$::')
profile=$(echo "$profile" | sed 's:/*$::')

if [ "$newGnome" = "1" ]
then local profile_path=$dconfdir/$profile

Expand Down