Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-24 | documentation: header levels re-adjusted | jao | |
2022-07-24 | documentation: improvements for xmobar-in-haskell docs | jao | |
2022-07-24 | documentation: mini-tutorial on writting your own xmobar.hs | jao | |
2022-07-18 | Changelog for first codeberg release0.44.1 | jao | |
2022-07-18 | ci badge | jao | |
2022-07-18 | .drone.yml | jao | |
2022-07-16 | old, unusable CI ymls moved to examples/ | jao | |
2022-07-16 | named anchors for sections mentioned in xmonad's doc | jao | |
2022-07-12 | Prepare dummy 0.44.1 release to mark transition to codeberg | jao | |
2022-07-12 | readme: aligned hackage badge | jao | |
2022-07-12 | readme: anchored hackage badge | jao | |
2022-07-12 | Remove old CI directory | jao | |
2022-07-12 | readme tweaks | jao | |
2022-07-12 | jao/xmobar -> xmobar/xmobar | jao | |
2022-07-10 | readme nit | jao | |
2022-07-10 | Links to new repo in codeberg | jao | |
2022-07-08 | changelog for 0.440.44 | jao | |
2022-07-01 | changelog update | jao | |
2022-06-05 | Add flake.nix | Tomasz Hołubowicz | |
2022-05-16 | Fix for -W "0" spec in logarithmic bars | jao | |
Should address issue #630. | |||
2022-05-16 | Ditto for DynNetwork | jao | |
2022-05-16 | Fix unit typos | Nils Trubkin | |
DynNetwork plugin might suffer from the same typo situation but I haven't confirmed it. | |||
2022-05-12 | Remove the now useless -DUTF8 flag | jao | |
2022-05-12 | Remove with_utf8 option and enable its features by default. | Gleb Popov | |
2022-05-11 | changelog for 0.430.43 | jao | |
2022-04-18 | CpuFreq: new template parameters max, min and avg. | jao | |
Fixes #166. | |||
2022-04-18 | New dbus signal: SetAlpha (fixes #499) | jao | |
2022-04-18 | readme/changelog for Batt fixes | jao | |
2022-04-18 | Stylistic nits for previous Batt refactoring/fix | jao | |
2022-04-18 | Split up battery reading functions; fixed units | Patrick Günther | |
Every quantity is now read in its own function and Maybe and pattern matching is used for dealing with absent files. On top of that all units should be fixed now. | |||
2022-04-16 | Fixed unit of battery power consumption | Patrick Günther | |
2022-04-14 | Memory: new argument to scale usage units | jao | |
Fixes #624 | |||
2022-04-13 | make small refactoring of load linux code | Michal Zielonka | |
Add <$> for parsing content of file. | |||
2022-04-12 | Changelog | jao | |
2022-04-11 | add load monitor for freebsd | Michal Zielonka | |
2022-03-30 | Fix: consistent use of configured nastring instead of hardcoded N/A | jao | |
2022-03-30 | Changelog and version bump | jao | |
2022-03-30 | Wee clean-ups | jao | |
2022-03-30 | Load: honour the -d (decimal digits) monitor argument | jao | |
2022-03-30 | Load monitor: correctly colorize according to -L/-H | jao | |
2022-03-30 | Load: new load average monitor | jao | |
Closes #208 | |||
2022-03-29 | Apply hlint suggestions to MultiCoreTemp | Rob Whitaker | |
2022-03-29 | Fix MultiCoreTemp's temperature file finding logic | Rob Whitaker | |
Instead of searching for a fixed set of files and directories (numbered 0-9), which would miss anything above 9, it now searches the relevant directories for files matching the right pattern, regardless of number. Fixes #616. | |||
2022-03-27 | base < 4.17 to allow ghc 9.2.2 | jao | |
Fixes #617 | |||
2022-03-24 | Link to jao/xmobar-config | jao | |
2022-03-24 | typo | jao | |
2022-03-24 | readme nits | jao | |
2022-03-01 | examples and changlog updated0.42 | jao | |
2022-02-20 | Documentation: Note the need for threaded RTS with QueueReader & xmonad | Tomas Janousek | |
Related: https://github.com/jaor/xmobar/issues/571 | |||
2022-02-20 | Documentation: More robust QueueReader example | Tomas Janousek | |
1. Call `initThreads` early because there's no guarantee the xmobar thread will do this before xmonad makes any Xlib calls (although it's likely as xmonad startup is probably more expensive). 2. Use `forkOS` to fail early if running in a non-threaded RTS. Also, xmobar's own main thread would normally be a bound thread, so this may (likely non-observably) result in more consistent behaviour. Related: https://github.com/jaor/xmobar/issues/571 |