aboutsummaryrefslogtreecommitdiff
path: root/swaybar/bar.c
AgeCommit message (Collapse)AuthorLines
2018-09-22swaybar, swaylock, & tree/container: Set cairo font options to render text ↵Geoff Greer-2/+6
and lines with subpixel hinting (if available).
2018-09-20swaybar: don't wl_display_roundtrip on each frameemersion-0/+1
This was the source of numerous bugs, from hotplug events not being received to segfaults because wl_display_roundtrip was making the bar process unplug events while blocking in an iteration over all outputs.
2018-09-20swaybar: handle hotpluggingemersion-41/+70
Don't kill and respawn swaybars on hotplug.
2018-09-17swaybar: use output names instead of output indexesemersion-29/+74
2018-07-19swaybar: Fix scroll handling on workspace buttonsminus-5/+9
As well as ignoring scroll events on status elements when click_events is enabled. Previously, using the scroll wheel on a workspace button would switch to that workspace instead of scrolling through them. Clicks and scrolling on status elements would always be processed by swaybar, too. So in case you were using scrolling as volume control on a status item, swaybar would additionally scroll through your workspaces.
2018-07-16send scroll events to swaybar blocksPeter Rice-0/+15
2018-07-16make hotspot callback take an x11 button idPeter Rice-1/+1
2018-07-09Update for swaywm/wlroots#1126emersion-1/+1
2018-04-24Fix a bunch of swaybar memory leaksemersion-10/+11
2018-04-24Work around maybe-uninitialized in bar.cAlex Xu (Hello71)-1/+3
Fixes #1855.
2018-04-22Fix swaybar axis event logicScott Anderson-18/+43
Uses 'visible' instead of 'focused', since we may scroll on a bar which isn't the focused output. We can't use "next_on_output" or "prev_on_output" to implement this, because it only modify the focused output. So scrolling on an unfocused output will affect the incorrect one. We just use the "workspace name" command instead.
2018-04-21Remove void * castsScott Anderson-6/+6
They're pointless.
2018-04-21Remove status command event on errorScott Anderson-1/+5
This prevents very high CPU load when the status command dies, and poll continuously awoken with POLLHUP.
2018-04-10Fix swaybar output config.Ryan Dwyer-28/+42
2018-04-05Handle output removal on swaybarDrew DeVault-4/+38
2018-04-03Address review feedbackDrew DeVault-1/+1
2018-04-03Don't use asserts with side-effectsDrew DeVault-9/+11
2018-04-03Add hidpi support to swaybarDrew DeVault-10/+63
2018-04-02Render i3bar blocksDrew DeVault-2/+2
2018-03-30Implement workspace switch on clickDrew DeVault-10/+24
2018-03-30Implement scroll wheel workspace switchingDrew DeVault-4/+40
2018-03-30Initialize seat pointer in swaybarDrew DeVault-0/+105
2018-03-29Use render_all_frames from bar_setupDrew DeVault-10/+8
2018-03-29Fix layer_surface_closedDrew DeVault-1/+1
2018-03-29Tear down bar when display exitsDrew DeVault-1/+2
2018-03-29Clean up status line on exitDrew DeVault-0/+5
2018-03-29Implement status lineDrew DeVault-4/+22
Does not yet support i3bar json protocol
2018-03-29Re-render bar on IPC updatesDrew DeVault-1/+7
2018-03-29Round up workspaces on each outputDrew DeVault-2/+7
2018-03-29Only utilize the configured outputsDrew DeVault-12/+20
2018-03-29Wire up basic IPC supportDrew DeVault-0/+11
2018-03-29Start port of swaybar to layer shellDrew DeVault-344/+100
This starts up the event loop and wayland display and shims out the basic top level rendering concepts. Also includes some changes to incorporate pango into the 1.x codebase properly.
2017-10-15Fix include path to input-event-codes.h for FreeBSD.Johannes Lundberg-0/+4
2017-09-23swaybar protocol: handle button 4 and 5John Axel Eriksson-0/+19
i3 bar handles scroll events as button 4 and 5. An example use case would be volume up/down.
2017-08-29styling fixesakokshar@redhat.com-9/+9
2017-08-29click_events as documented at https://i3wm.org/docs/i3bar-protocol.htmlakokshar@redhat.com-8/+44
2017-06-29Revert "swaybar: Group child processes for signalling"Drew DeVault-2/+1
This reverts commit 8f4bc0a3741b63c64bb6059bb632e7584c595d14.
2017-06-14Merge branch 'master' into trayDrew DeVault-1/+2
2017-06-13Remove Xembed SupportCalvin Lee-5/+0
Xembed support is premature in sway and should be postponed. This commit only removes swaybar starting xembedsniproxy, if users would like, they can still start xembedsniproxy manually, however there will be no official support.
2017-06-12swaybar: Group child processes for signallingYury Krivopalov-1/+2
Fixes child proccess killing, when status_command is a complex command like "i3status | wrapper.sh". Set the process group id of the child process by calling `setpgid` after forking and before calling `exec`. The process group ID will be set to the process ID of the forked process. Processes spawned by this child process will also have this group ID. Send signals to the process group with `killpg`. This will send the signal to all of the process group.
2017-06-07Reorganize Tray CodeCalvin Lee-53/+7
Remove tray code from bar.c and render.c
2017-06-07Implement Tray IconsCalvin Lee-34/+101
This commit implements the StatusNotifierItem protocol, and enables swaybar to show tray icons. It also uses `xembedsniproxy` in order to communicate with xembed applications. The tray is completely optional, and can be disabled on compile time with the `enable-tray` option. Or on runtime with the bar config option `tray_output none`. Overview of changes: In swaybar very little is changed outside the tray subfolder except that all events are now polled in `event_loop.c`, this creates no functional difference. Six bar configuration options were added, these are detailed in sway-bar(5) The tray subfolder is where all protocol implementation takes place and is organised as follows: tray/sni_watcher.c: This file contains the StatusNotifierWatcher. It keeps track of items and hosts and reports when they come or go. tray/tray.c This file contains the StatusNotifierHost. It keeps track of sway's version of the items and represents the tray itself. tray/sni.c This file contains the StatusNotifierItem struct and all communication with individual items. tray/icon.c This file implements the icon theme protocol. It allows for finding icons by name, rather than by pixmap. tray/dbus.c This file allows for asynchronous DBus communication. See #986 #343
2017-03-10UnGNUify the codebaseDrew DeVault-0/+2
2016-09-05Add client support for HiDPIDrew DeVault-3/+6
This adds HiDPI support to swaybar, swaybg, and swaylock.
2016-09-05Initial testing on hidpi clientsDrew DeVault-1/+1
2016-09-01Reorganize includesDrew DeVault-6/+5
2016-07-18Fix a warningHummer12007-1/+1
2016-07-17Implement configurable wrapping on bar ws scrollDrew DeVault-0/+31
2016-07-16Fix #753Drew DeVault-2/+6
2016-07-15Change workspace when mouse wheel is scrolled while hovering over the barDavid Eklov-1/+9