Skip to content

Commit dbf1c90

Browse files
authored
Merge pull request #243 from pkumarg/master
README.md to include build requirements, update and fix install.sh
2 parents 10588f7 + a4fde14 commit dbf1c90

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,25 @@ Also, check out my related [Google Earth View wallpaper extension](https://githu
3333
* Bing may detect your location incorrectly (and force a locale as above) - if you see this, please let me know what Bing.com itself does
3434
* GNOME Shell themes can break some GNOME popup menu elements (toggle switches for example). This impacts GNOME more generally, not just this extension. Double check you are running latest versions of your themes (or disable them).
3535

36-
## Requirements
36+
## System Requirements
3737

3838
GNOME 3.36+ or 40+ (Ubuntu 20.04 LTS or later, older versions of the extension work with 3.18+, but are no longer supported).
3939

40+
## Package dependencies
41+
42+
Below packages are required to build the extension
43+
44+
```
45+
npm
46+
gettext
47+
intltool
48+
zip
49+
```
50+
For Ubuntu you can hit below command to install
51+
```
52+
sudo apt install npm gettext intltool zip -y
53+
```
54+
4055
## Install
4156

4257
[Install from extensions.gnome.org](https://extensions.gnome.org/extension/1262/bing-wallpaper-changer/)
@@ -53,7 +68,7 @@ sh install.sh
5368

5469
## Enable debug logging
5570

56-
Enable debug logging through the exptension preferences 'Debug options' tab or if unable to open preferences you can enable debugging using dconf-editor with this command:
71+
Enable debug logging through the extension preferences 'Debug options' tab or if unable to open preferences you can enable debugging using dconf-editor with this command:
5772
```
5873
GSETTINGS_SCHEMA_DIR=$HOME/.local/share/gnome-shell/extensions/[email protected]/schemas dconf-editor /org/gnome/shell/extensions/bingwallpaper/
5974
```

install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
44
INSTALL_PATH=~/.local/share/gnome-shell/extensions
5+
mkdir -p $INSTALL_PATH
56
67

78
./buildzip.sh
@@ -10,4 +11,4 @@ mkdir -p $INSTALL_PATH/$EXTENSION_NAME
1011

1112
unzip -o $ZIP_NAME -d $INSTALL_PATH/$EXTENSION_NAME/
1213

13-
gnome-extensions enable $EXTENSION_NAME
14+
gnome-extensions enable $EXTENSION_NAME

0 commit comments

Comments
 (0)