forked from simon04/gnome-shell-extension-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
113 lines (81 loc) · 3.57 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
GNOME Shell Weather Extension
=============================
The GNOME Shell Weather Extension is a simple extension for
displaying weather notifications in GNOME Shell.
Currently, the weather report including forecast for today and
tomorrow is fetched from Yahoo! Weather.
Installation
------------
To install the extension for every user in the computer, run the
following commands as a regular user:
./autogen.sh --prefix=/usr && make
and then as root (or using sudo):
make install
Make sure you have the libglib2.0-dev package (or equivalent for
your distribution) installed.
If you want to install the extension only for your user, you can do
the following:
./autogen.sh --prefix=$HOME/.local --with-local-install=yes
make
make install
After installing the extension restart GNOME Shell by doing "Alt-F2
r ENTER", and then enable it with the gnome-tweak-tool.
To uninstall the extension just do:
make uninstall
or (if you installed it locally) just delete its directory:
rm -rf $HOME/.local/share/gnome-shell/[email protected]
Remember to first disable it with the gnome-tweak-tool.
Screenshots
-----------
https://github.com/canek-pelaez/gnome-shell-extension-weather/wiki/Screenshots
Versions
--------
Due to incompatible changes between the different versions of GNOME
Shell, we are currently only supporting GNOME Shell 3.6. However, we
have branches for older versions.
Configuration
-------------
You can use the gnome-shell-extension-prefs tool to configure the
extension. To launch the gnome-shell-extension-prefs tool you can
either do Alt+F2 gnome-shell-extension-prefs ENTER, or you can go to
the Shell Extension section of the Tweak Tool. Next to the check
button for the Weather Extension should be a button that launches
the gnome-shell-extension-prefs tool.
All the configuration changes are reflected in the extension
immediately, there is no need to disable and enable again the
extension.
You can see more screenshots of the gnome-shell-extension-prefs tool
in action in the Screenshots page.
Location
--------
The GNOME Shell Weather Extension uses Yahoo!'s Location IDs to know
what weather data should be requested. The preferences for the
extension includes a Location ID searcher: you only need to click in
the "Search for Location ID" button, enter the name of your town or
city, and press ENTER or click in the "Search" button. A list of
locations that matches your search will fill the combo box so you
can select the correct one.
License
-------
Copyright (C) 2011-2012
Ecyrbe <[email protected]>,
Timur Kristóf <[email protected]>,
Elad Alfassa <[email protected]>,
Simon Legner <[email protected]>,
Simon Claessens <[email protected]>,
Mark Benjamin <[email protected]>,
Canek Peláez <[email protected]>,
Christian Metzler <[email protected]>,
Mattia Meneguzzo <[email protected]>
This file is part of gnome-shell-extension-weather.
gnome-shell-extension-weather is free software: you can redistribute
it and/or modify it under the terms of the **GNU General Public
License as published by the Free Software Foundation, either version
3** of the License, or (at your option) any later version.
gnome-shell-extension-weather is distributed in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with gnome-shell-extension-weather. If not, see
<http://www.gnu.org/licenses/>.