Browse Source

fix gschema string interpolation

master
pvincent 8 months ago
parent
commit
1d1c022567
  1. 8
      README.md
  2. 2
      src/main

8
README.md

@ -18,15 +18,13 @@ DONE
* [x] Bookworm ready
requirements for installation process
------------
requirements before installation process
----------------------------------------
* curl
* git
`sudo apt install -y curl git`
install one-liner
-----------------
`curl https://git.artcode.re/pvincent/debian-gnome/raw/branch/master/src/install.sh | bash -s --`
`sudo apt install -y curl git && curl https://git.artcode.re/pvincent/debian-gnome/raw/branch/master/src/install.sh | bash -s --`

2
src/main

@ -215,7 +215,7 @@ EXTENSIONS=(
for extension in "${EXTENSIONS[@]}"; do
if [[ ! -d $HOME/.local/share/gnome-shell/extensions/$extension ]]; then
"$HOME/.local/bin/gext" install "$extension"
sudo cp "$HOME/.local/share/gnome-shell/extensions/$extension/schemas/*.gschema.xml" /usr/share/glib-2.0/schemas/
sudo cp "$HOME"/.local/share/gnome-shell/extensions/"$extension"/schemas/*.gschema.xml /usr/share/glib-2.0/schemas/
else
echo "extension <${extension}> already installed!"
fi

Loading…
Cancel
Save