From f788157976be40f12b1bf3789a26d6773514a5a1 Mon Sep 17 00:00:00 2001 From: Colin Frisch Date: Sun, 7 Apr 2024 20:57:09 -0700 Subject: [PATCH 1/2] fix: too many slashes in profile_path --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 94b5f5d..5be5986 100755 --- a/install.sh +++ b/install.sh @@ -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 From 9bf4edd5745fae71a5e752972f2ec496519e67b7 Mon Sep 17 00:00:00 2001 From: Colin Frisch Date: Sun, 7 Apr 2024 21:07:02 -0700 Subject: [PATCH 2/2] doc: added dbus-x11 install instruction --- INSTALL.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index e83e904..6d386e1 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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.