diff options
| author | 2026-05-06 12:34:24 -0700 | |
|---|---|---|
| committer | 2026-05-06 12:34:24 -0700 | |
| commit | 6f1d5bed8980a4c42073d0c5d66ef2755093575a (patch) | |
| tree | c3ee30837c9314cd7a7f2cc73453ebee5ad29b2e /glide | |
| parent | 115fa0ba6181e80225d7caa2bb7d99e3c712f938 (diff) | |
| download | new-dotfiles-6f1d5bed8980a4c42073d0c5d66ef2755093575a.tar.gz new-dotfiles-6f1d5bed8980a4c42073d0c5d66ef2755093575a.zip | |
glide: Add auto command for setting my geo location on punt staging
Diffstat (limited to 'glide')
| -rw-r--r-- | glide/.config/glide/glide.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/glide/.config/glide/glide.ts b/glide/.config/glide/glide.ts index 80e3851..82df3f1 100644 --- a/glide/.config/glide/glide.ts +++ b/glide/.config/glide/glide.ts @@ -377,3 +377,11 @@ const toggle_reader_mode = glide.excmds.create({ }, () => { browser.tabs.toggleReaderMode(); }); + +glide.autocmds.create("UrlEnter", { + hostname: "staging.goldsink.com", +}, () => { + glide.buf.prefs.set( + 'geo.provider.network.url', + 'data:application/json,{"location": {"lat": 45.542805, "lng": -122.7369563}, "accuracy": 100.0}'); +}); |
