summaryrefslogtreecommitdiffstats
path: root/swaybar
Commit message (Collapse)AuthorAge
* Add client support for HiDPILibravatar Drew DeVault2016-09-05
| | | | This adds HiDPI support to swaybar, swaybg, and swaylock.
* Initial testing on hidpi clientsLibravatar Drew DeVault2016-09-05
|
* Reorganize includesLibravatar Drew DeVault2016-09-01
|
* implement solid color rendering for swaybgLibravatar Zandr Martin2016-07-30
|
* Fix a warningLibravatar Hummer120072016-07-18
|
* Implement configurable wrapping on bar ws scrollLibravatar Drew DeVault2016-07-17
|
* Fix #753Libravatar Drew DeVault2016-07-16
|
* Change workspace when mouse wheel is scrolled while hovering over the barLibravatar David Eklov2016-07-15
|
* Rename pointer_input::notify to indicate that is called on button clicksLibravatar David Eklov2016-07-15
|
* Send command to sway to change workspace when workspace button is clickedLibravatar David Eklov2016-07-14
|
* Compute what workspace button is clickedLibravatar David Eklov2016-07-14
| | | | This commit does not do anything with this information other than logging it.
* Extract workspace size computation from render_workspace_button()Libravatar David Eklov2016-07-14
| | | | Also remove some unnecessary strtup()s and rename a few variables and functions.
* Setup to receive mouse click events and log themLibravatar David Eklov2016-07-14
|
* swaybar: Make swaybar a shell surfaceLibravatar David Eklov2016-07-04
|
* Fix another -Wunused-resultLibravatar Drew DeVault2016-04-29
|
* Fix missing include pathsLibravatar Tomáš Čech2016-04-28
| | | | | | When headers were installed in more sofisticated places (but package config knows it right), it revealed missing paths in CMake configuration. Lets fix it.
* Renamed to pango_markupLibravatar Mykyta Holubakha2016-04-24
|
* Fix line length calculationLibravatar Mykyta Holubakha2016-04-24
|
* Added plaintext_markup to swaybar IPCLibravatar Mykyta Holubakha2016-04-24
|
* Added plaintext markup configurationLibravatar Mykyta Holubakha2016-04-24
|
* Merge pull request #598 from Hummer12007/pango_fixLibravatar Drew DeVault2016-04-24
|\ | | | | Passing missing argument to get_text_size
| * Passing missing argument to get_text_sizeLibravatar Mykyta Holubakha2016-04-24
| |
* | Use i3bar format for markup field.Libravatar Mikkel Oscar Lyderik2016-04-24
|/ | | | | | | | In the i3bar protocol the value of the markup field is a string: "pango" or "none" rather than a bool. This patch makes swaybar compatible with that. http://i3wm.org/docs/i3bar-protocol.html
* Flesh out pango markup implementationLibravatar Drew DeVault2016-04-17
|
* Stop swaybar crashing without argsLibravatar crondog2016-03-31
|
* Handle swaybar using sway fontLibravatar Mikkel Oscar Lyderik2016-03-30
|
* Make client/pango.h not depend on client/window.hLibravatar Mikkel Oscar Lyderik2016-03-30
|
* Poll before wl_display_dispatchLibravatar Mikkel Oscar Lyderik2016-02-27
|
* Differentiate between all or no outputsLibravatar Mikkel Oscar Lyderik2016-02-27
|
* Make single bar handle multiple outputsLibravatar Mikkel Oscar Lyderik2016-02-27
|
* Correctly exit sway on errors.Libravatar Mikkel Oscar Lyderik2016-02-26
| | | | | | | | Calling `exit` in sway_terminate prevents sway from correctly shutting down (freeing data, cleanly terminating the ipc server, etc.). A better way is to exit straight away if the failure occurs before `wlc_run` and use sway_abort as usual if it occur when wlc is running.
* extract cairo_set_source_u32()Libravatar Christoph Gysin2016-01-25
|
* swaybar: Fix plaintext handling.Libravatar Mikkel Oscar Lyderik2016-01-25
| | | | Fix #473
* Fix colors off by oneLibravatar Mikkel Oscar Lyderik2016-01-25
|
* swaybar: move headers to include/barLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: cleanup CmakeLists.txtLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: rename state to barLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: move core functionality to state.cLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: Move swaybar_teardown to free_stateLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: move ipc stuff to ipc.{h,c}Libravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: feactor render, statuslineLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: Separate configLibravatar Mikkel Oscar Lyderik2016-01-24
|
* swaybar: add --help optionLibravatar Christoph Gysin2016-01-23
|
* swaybar: debug option takes no argumentLibravatar Christoph Gysin2016-01-23
|
* Fix whitespace issues.Libravatar Mikkel Oscar Lyderik2016-01-05
|
* swaybar: fix loggingLibravatar crondog2016-01-04
| | | | | Optionally turn on debugging in swaybar. I acidentally introduced persistent logging in a previous commit
* swaybar: Implement workspace_buttons yes|noLibravatar Mikkel Oscar Lyderik2016-01-03
|
* swaybar: Implement binding_mode_indicatorLibravatar Mikkel Oscar Lyderik2016-01-03
|
* Merge pull request #427 from mikkeloscar/ipc-updateLibravatar Drew DeVault2016-01-03
|\ | | | | Refactor IPC server/client
| * Add type to returned response.Libravatar Mikkel Oscar Lyderik2016-01-03
| | | | | | | | | | | | | | Makes `ipc_recv_response` return a struct with size, type and payload rather than just the payload string. This is useful if the type has to be checked on the client.