Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-25 | Back to app/src, since it seems they're the default convention for stack | jao | |
2018-11-21 | All sources moved inside src | jao | |
2018-11-21 | Split Modules into Library & Executable Structure | Pavan Rikhi | |
Move the Main module to a new `app` directory. All other modules have been nested under the `Xmobar` name. Lots of module headers & imports were updated. | |||
2018-10-06 | Signal termination to plugin threads and wait for them upon program exit | Daniel Schüssler | |
This is necessary to allow the plugin threads to run their cleanup actions. | |||
2018-07-10 | New configuration parameter `textOffsets` (fixes #311) | jao | |
2018-06-24 | hlinting | jao | |
2017-04-29 | hlint configuration | jao | |
2016-09-14 | tell the user what went wrong in the event of a failure | michael bishop | |
2015-04-21 | Same vertical alignment for multiple fonts | jao | |
2015-04-13 | A bit more experimentation with alignment | jao | |
2015-03-20 | Fixes for vertical alignment and border drawing | jao | |
2015-03-19 | More alignment fixes | jao | |
2015-03-18 | Fix for background's vertical aligment | jao | |
2015-03-17 | Trying a better vertical alignmnet (issue #221) | jao | |
2015-03-11 | Fix for default icon vertical alignment (#216) | jao | |
2015-02-02 | Real fix: Xrender only available if with_xft | jao | |
2015-01-08 | Support for multiple fonts | Markus Scherer | |
2015-01-07 | Whitespace | jao | |
2015-01-07 | Honoring background color when alpha=255 (issue #209) | jao | |
2014-12-30 | Linting and defaults | jao | |
2014-12-30 | Fix: use the right background area in transparency | jao | |
2014-12-30 | Merge branch 'transparency' of https://github.com/ezyang/xmobar | jao | |
Conflicts: src/Config.hs src/Main.hs src/Parsers.hs src/XUtil.hsc src/Xmobar.hs | |||
2014-12-02 | New textOffset and iconOffset configuration parameters | jao | |
2014-12-02 | Merge branch 'master' of https://github.com/ryantm/xmobar into ryantm-master | jao | |
Conflicts: src/Xmobar.hs | |||
2014-09-24 | Add iconRoot config option | Alexander Shabalin | |
For all <icon=path/> if path does not start with "/", "./", "../" it will have iconRoot ++ "/" prepended to it. | |||
2014-09-16 | Add ability to set border width | Travis Staton | |
2014-08-09 | hlint refactorings | Reto Hablützel | |
2014-06-01 | fix vertical text alignment calculation | Ryan Mulligan | |
the baseline (valign) is now set so the font will render with equal vertical margin above and below the font extents | |||
2014-03-13 | Back to picking first screen by default (#158)0.20.1 | Jose Antonio Ortega Ruiz | |
2014-02-20 | Change actions syntax | Marcin Mikołajczyk | |
2014-02-18 | Add support for multiple actions per item, activated depending on mouse ↵ | Marcin Mikołajczyk | |
button clicked | |||
2013-07-07 | Transparency and tint support. | Edward Z. Yang | |
New configuration option 'alpha' which adjusts alpha transparency (0 is transparent, 255 is opaque). Signed-off-by: Edward Z. Yang <ezyang@mit.edu> | |||
2013-03-13 | Help type inferencer a bit, kills warning | Alexander Polakov | |
2013-03-13 | Fix actions for right side of the bar | Alexander Polakov | |
totSLen was wrong | |||
2013-03-13 | Use fmap instead of >>= | Alexander Polakov | |
2013-03-13 | Introduce Actions | Alexander Polakov | |
Actions are event re-actions. Currently only ButtonPress event is handled by Actions and only one action is defined, which is called Spawn (run external command). Type (and parser) can be extended to EWMH actions (switch to desktop, close window, whatever). | |||
2013-02-04 | Better icon alignment | Alexander Polakov | |
2013-02-04 | Use real icon width | Alexander Polakov | |
2013-02-03 | Fixes for previous | Alexander Polakov | |
2013-02-03 | Implement icon caching | Alexander Polakov | |
2013-01-27 | XBM icon support | Edward O'Callaghan | |
<icon=/path/to/icon> | |||
2012-10-08 | Fixes for warnings reported in github issue #71 | Jose Antonio Ortega Ruiz | |
2012-09-11 | Avoiding X server leaks with XftColor cache | Jose Antonio Ortega Ruiz | |
This patch is a first complete solution to the long-standing memory leak (on the X server side) caused by repeteadly asking the server to allocate XftColor instances. Despite the fact that we were freeing them, the server didn't seem to care... this was also happening for non-Xft Colors, and solved in the same way we'd done here, i.e., by caching XftColor instances. And additional complication has been that Graphics.X11.Xft doesn't export any function to create and retain an XftColor, nor the necessary datatype constructors to write a compatible version outside the module (there's no way to construct an XftColor instance to pass to the other functions in the library). So, i've created my own lite version of the whole module, until the day it supports XftColor creation. | |||
2012-09-10 | New module ColorCache | Jose Antonio Ortega Ruiz | |
2012-09-09 | Missing Window module in cabal file | Jose Antonio Ortega Ruiz | |
2012-09-09 | Correct vertical alignment for XFT fonts | Jose Antonio Ortega Ruiz | |
2012-09-01 | Some cosmetic fixes. | Jochen Keil | |
I tried to scrap the hide/reveal boilerplate, but that didn't work out due different functions ({show,hide}Window) and signaltypes. Got almost as ugly. Maybe a pattern matching function instead of the "case typ of" would be nicer. But that's just code golfing. | |||
2012-09-01 | Set StrutValues from showWindow | Jochen Keil | |
This is superior to calling the repositionWin function. It will only set the StrutValues and avoid additional work. This means, that extra parameters need to be passed down to showWindow. However, that is not a problem here. | |||
2012-09-01 | Pass the timeout value unchanged to the toggle function | Jochen Keil | |
Since the timeout is passed on as hide or reveal signal, it must not be changed or the multiplications will pile up. | |||
2012-09-01 | Send hide or reveal signal for toggling | Jochen Keil | |
This is a more abstract way of implementing the Toggle operation. |