~lxsameer/lxtmux

df2068c2 — Sameer Rahmani 4 years ago master
Fork from dracula and change the theme to be minimal
05be7346 — Dane Williams 4 years ago
Update feature_request.md
e40dc592 — Dane Williams 4 years ago
Update bug-report.md
2d4ab910 — Dane Williams 4 years ago
Update issue templates

Trying out adding issue templates, probably will change them up still.
a66de7a3 — Dane Williams 4 years ago
Update INSTALL.md
48a91171 — Dane Williams 4 years ago
Merge pull request #21 from dracula/celsius

celsius option
60675a17 — Dane Williams 4 years ago
celsius option
0b573537 — Dane Williams 4 years ago
fixed a couple shebang typos
be0f37e5 — Dane Williams 4 years ago
Merge pull request #20 from pbui/network-hosts

scripts/network.sh: use a list of hosts
62537a8c — Peter Bui 4 years ago
scripts/network.sh: use a list of hosts

- Use a list of hosts: google.com, github.com, example.com
- Script will try each in turn, stopping at the first one that connects
- Also fix she-bang and some quotes

- Tested with Wifi and Offline.
b497fe68 — Dane Williams 4 years ago
Update README.md
c0971cbe — Dane Williams 4 years ago
moved config instructions to INSTALL.md
845a3631 — Dane Williams 4 years ago
changed ping from google.com to github.com for users in countries where google is blocked
91393555 — Dane Williams 4 years ago
Merge pull request #13 from smarquez1/master

Add options to disable battery and network
8842bdf8 — Sergio D. Márquez 4 years ago
Add options to disable battery and network
da1845eb — Conor Murphy 4 years ago
Handling the 429 response limit error (#10)

* switching over

* should just be a little schemeski

* changed exit to exit_codes idk if that matters

* yuh

* yuh

* yuh

* yuh

* wtf

* yuh

* trying out new format

* trying out new format

* trying out new format

* trying out new format

* trying out new format

* so annoying having to push every time you test

* so annoying having to push every time you test

* this might actually work now

* this might actually work now

* this might actually work now

* yeet

* yeet

* wtf

* wtf

* wtf

* bet

* final edit for handling request limit reached on weather

* possibly functional error checking method

* did we do it

* properly utilizing global variables
d3ef2d61 — Dane Williams 4 years ago
Update README.md
792ba887 — Dane Williams 4 years ago
Update README.md
8d1c554e — Dane Williams 4 years ago
Merge pull request #8 from camspiers/master

[Feature] Provides ability to disable weather fetching and display
01f6825e — Cam Spiers 4 years ago
[Feature] Provides ability to disable weather fetching and display

Personally, displying the weather doesn't have a lot of use for me
but additionally I ran into an issue where the API you are using
ratelimited call from my IP address, I guess because it was
overfetching.

This doesn't fix the ratelimited issue, but instead at least gives
people the ability to turn the feature off.

Test Plan:

In `~/.tmux.conf` set the following:

```
set -g @plugin 'tmux-plugins/tpm'
set -g @dracula-show-weather false
set -g @plugin 'camspiers/tmux'
run -b '~/.local/share/tmux/plugins/tpm/tpm'
```

Ensure that weather module no longer loads.

In `~/.tmux.conf` set the following:

```
set -g @plugin 'tmux-plugins/tpm'
set -g @dracula-show-weather true
set -g @plugin 'camspiers/tmux'
run -b '~/.local/share/tmux/plugins/tpm/tpm'
```

Ensure that weather module does stil load.
Next