2015-12-02 14:23:39 +00:00
|
|
|
#+TITLE: Geolocation layer
|
2015-11-08 18:04:44 +00:00
|
|
|
#+HTML_HEAD_EXTRA: <link rel="stylesheet" type="text/css" href="../../css/readtheorg.css" />
|
2015-10-14 03:35:56 +00:00
|
|
|
|
2015-10-30 11:20:58 +00:00
|
|
|
* Table of Contents :TOC_4_org:noexport:
|
|
|
|
- [[Description][Description]]
|
|
|
|
- [[Supported packages in this layer][Supported packages in this layer]]
|
|
|
|
- [[Install][Install]]
|
|
|
|
- [[Configuration][Configuration]]
|
|
|
|
- [[Location][Location]]
|
|
|
|
- [[theme-changer][theme-changer]]
|
|
|
|
- [[sunshine (weather forecast)][sunshine (weather forecast)]]
|
|
|
|
- [[osx-location][osx-location]]
|
|
|
|
- [[Key Bindings][Key Bindings]]
|
|
|
|
- [[Weather][Weather]]
|
2015-06-21 14:42:44 +00:00
|
|
|
|
|
|
|
* Description
|
2015-10-14 03:35:56 +00:00
|
|
|
This layer offers few location sensitive adjustment to Emacs, such as
|
|
|
|
automatically switching between light (day) and dark (night) themes, weather
|
2015-06-21 14:42:44 +00:00
|
|
|
forecast and on OS X, also automatic tracking of location, using OS X's
|
|
|
|
CoreLocation services.
|
|
|
|
|
|
|
|
** Supported packages in this layer
|
|
|
|
- [[https://github.com/hadronzoo/theme-changer][theme-changer]]
|
|
|
|
- [[https://github.com/aaronbieber/sunshine.el/blob/master/sunshine.el][sunshine]]
|
|
|
|
- [[https://github.com/purcell/osx-location][osx-location]]
|
|
|
|
|
|
|
|
* Install
|
|
|
|
To enable this contribution layer, add it to your =~/.spacemacs=~ like this:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
2015-10-14 09:03:46 +00:00
|
|
|
(setq-default dotspacemacs-configuration-layers '(geolocation))
|
2015-06-21 14:42:44 +00:00
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
All services are disable by default. To enable all, or some of them, add instead
|
|
|
|
something like this:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
2015-10-14 03:35:56 +00:00
|
|
|
(geolocation :variables
|
|
|
|
geolocation-enable-osx-location-service-support t
|
|
|
|
geolocation-enable-weather-forecast t
|
|
|
|
geolocation-enable-automatic-theme-changer t)
|
2015-06-21 14:42:44 +00:00
|
|
|
#+END_SRC
|
|
|
|
|
2015-10-14 03:35:56 +00:00
|
|
|
* Configuration
|
|
|
|
** Location
|
2015-06-21 14:42:44 +00:00
|
|
|
To set location manually, add something like this inside the ~dotspacemacs/config
|
|
|
|
defun~.
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(setq calendar-location-name "Barcelona, Spain"
|
|
|
|
calendar-latitude 41.23
|
|
|
|
calendar-longitude 1.80)
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
On OS X, all of these variables get setup automatically by the ~osx-location~
|
2015-10-14 03:35:56 +00:00
|
|
|
service, when enabled. If ~calendar-location-name~ was omitted, it'll be
|
2015-06-21 14:42:44 +00:00
|
|
|
stringed-up like so: "41.23, 1.80".
|
|
|
|
|
|
|
|
** theme-changer
|
2015-10-14 03:35:56 +00:00
|
|
|
Theme changer will switch between the first two themes the user has setup in
|
|
|
|
~dotspacemacs-themes~, depending on time at geographical location.
|
2015-06-21 14:42:44 +00:00
|
|
|
|
|
|
|
** sunshine (weather forecast)
|
|
|
|
Sunshine uses the imperial unit system by default. To switch to metric, do this:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(setq sunshine-units 'metric)
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
Weather forecast icons are disabled by default, but can be toggled by pressing
|
|
|
|
`i' within this mode's main buffer. To display weather forecast icons by default
|
|
|
|
("pretty mode"), change the settings to this:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(setq sunshine-show-icons t)
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
[[file:img/emacs-sunshine.jpg]]
|
|
|
|
|
|
|
|
** osx-location
|
|
|
|
OS X users can take adavantage of automatic geogrphical discovery using the OS'
|
|
|
|
CoreLocation system service, implemented as a long running background process. A
|
|
|
|
helper script will need to be given proper access first time this layer is
|
|
|
|
activated.
|
|
|
|
|
|
|
|
[[file:img/emacs-location-helper.jpg]]
|
2015-10-14 03:35:56 +00:00
|
|
|
|
|
|
|
* Key Bindings
|
|
|
|
** Weather
|
|
|
|
| Evil | Holy | Command |
|
|
|
|
|-----------+------+-----------------------------------------------|
|
|
|
|
| ~SPC a w~ | | Display pretty weather forecast |
|
|
|
|
| ~SPC a W~ | | Display quick weather forecast in mini buffer |
|