Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-03 | Change default unit to GHz | Ada Joule | |
2018-02-03 | Make CpuFreq use MHz unit when suffix is false | Ada Joule | |
2018-02-03 | Honour -d switch in CpuFreq | Ada Joule | |
2018-02-01 | `stack build --flag xmobar:all_extensions` working | jao | |
2018-02-01 | lowercase ftw | jao | |
2018-02-01 | We don't use a mailing list anymore | jao | |
2018-02-01 | news.md -> changelog.md | jao | |
2018-02-01 | readme cleanups | jao | |
2018-02-01 | Doc nits | jao | |
2018-02-01 | Version bumped: 0.250.25 | jao | |
2018-02-01 | Kbd: silence warnings with explicitly undefined poke | jao | |
2018-01-31 | Let's try travis.sh (hlint warnings) again | jao | |
2018-01-31 | Using external iwlib | jao | |
2018-01-31 | readme.md: credits and hackage badge | jao | |
2018-01-31 | Fix CI Error | sahabi | |
Removed ghc 7.6 due to compilation error. Added ghc 8.0, 8.2. | |||
2018-01-30 | Fix travis/CI | sahabi | |
The Travis CI fails due to the command sh ./travis.sh src returns an error due to the fact that travis.sh does not exist. The fix is removing the command from travis.yml. | |||
2018-01-17 | stack.yaml update (still pretty clumsy) and Mbox -u's docs | jao | |
2017-12-23 | Honouring NAString in MPris (-x switch) monitor | jao | |
Should fix issue #325 | |||
2017-12-15 | Travis tweaks: libxrandr-dev | jao | |
2017-12-15 | GHC 7.10 for travis | jao | |
2017-12-15 | Configurable WM_CLASS and WM_NAME (should address #323) | jao | |
2017-08-24 | Fix UVMeter due to changed URL and BOM | Róman Joost | |
The URL which exports the real time UV data has changed to an HTTPS address. Since the HTTP package does not support HTTPS URLs, use http-conduit to retrieve the XML document. Unfortunately, the XML documents XML declaration precedes a byte order mark which the previous XML parser was unable to handle. We're simply ignoring the BOM in order to get to the UV values. | |||
2017-07-30 | Guard monitor 'Weather' behind flag 'with_weather' | michaellilanushoober | |
Hide the monitor 'Weather' behind a flag named 'with_weather'. This implies that the dependency on the module 'HTTP' is now optional. The default for 'with_weather' is True since we do not want to break backwards compatibility/user experience. Further moved the effect of the flag with_conduit within the branch of 'with_weather', since that flag only has some effect if 'with_weather' is true. | |||
2017-07-30 | Remove UVMeter from global 'other-modules' list | michaellilanushoober | |
List the module UVMeter within the conditional branch of the flag 'with_uvmeter' instead of the global 'other-modules'. | |||
2017-07-25 | Further documentation clarifications | jao | |
2017-07-25 | Documentation fix (closes #306) | jao | |
2017-05-28 | readme: specify package name for iwlib on Arch | Maddison Hellstrom | |
On Arch Linux, the package providing `iwlib` is a bit hard to find - it should come from the official `wireless_tools` package [1]. I've updated the readme to make this more clear. [1] https://www.archlinux.org/packages/?q=wireless_tools | |||
2017-05-27 | Updated stack.yml (autogenerated by stack init for ghc 8.x) | jao | |
2017-05-27 | Version set to 0.24.50.24.5 | jao | |
2017-05-27 | Fix for vertical bars (should fix issue #303) | jao | |
2017-05-18 | Update reference to deprecated weather.noaa.gov. | robert seaton | |
2017-05-03 | Avoiding travis badget in the web page | jao | |
2017-05-03 | Documentation typo | jao | |
2017-05-02 | Version set 0.24.40.24.4 | jao | |
2017-04-30 | News update | jao | |
2017-04-29 | CI status badge | jao | |
2017-04-29 | Preprocessor nits | jao | |
2017-04-29 | Preprocessor nits | jao | |
2017-04-29 | CPP for GHC 8.0 | jao | |
2017-04-29 | Compilation warnings (redundant imports) in GHC 8.0 | jao | |
2017-04-29 | Trying to fix libmpd for GHC 7.8 | jao | |
2017-04-29 | travis: missing libmpd-dev install | jao | |
2017-04-29 | travis: apt deps | jao | |
2017-04-29 | travis.yml | jao | |
2017-04-29 | hlint warning fixed | jao | |
2017-04-29 | hlint configuration | jao | |
2017-03-03 | More paths for CoreTemp (issue #291) | jao | |
2017-02-23 | Compiling with --with-rtsopts=-V0 to reduce wakeups (issue #89) | jao | |
2017-01-23 | Spelling Tomáš Janoušek right | jao | |
2017-01-23 | Fix Net monitor for large uptimes/bytecounts | Tomas Janousek | |
My laptop currently has rx/tx bytes in 10s of gigabytes and it's only been up for 20 days. Normally it's several times more. At this point, Float can only tell the difference of 4KB and up: Prelude> let x = (50 * 2^30 :: Float) in (x + 2000) - x 0.0 Prelude> let x = (50 * 2^30 :: Float) in (x + 3000) - x 4096.0 This commit makes the Net monitor read Word64 which is exactly what the kernel prints into /proc/net/dev [1] and converts to Float only after subtracting the two numbers. [1] https://github.com/torvalds/linux/blob/7a308bb3016f57e5be11a677d15b821536419d36/net/core/net-procfs.c#L82 Still, I think it's time to switch from Float to Double. At half-gigabit speeds (easily attainable at home while rsyncing over a direct UTP cable between two post-2010 laptops), Float can only tell the difference of 8 bytes and up (and I'm not even considering takeDigits!). That's probably okay for a Net monitor in xmobar, but we're so close to the limit it makes sense to move to Double just in case. |