Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yet another swaybar ipc implementation #1244

Merged
merged 23 commits into from
Dec 1, 2021
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
285a264
feat(util): SafeSignal class for cross-thread signals with arguments
alebastr Dec 29, 2020
8a0e76c
fix(util): avoid creating temporary functor for each event
alebastr Oct 20, 2020
79883db
feat(util): optimize SafeSignal for events from the main thread
alebastr Dec 29, 2020
3e2197a
test(util): add tests for SafeSignal
alebastr Dec 29, 2020
03a641e
feat(bar): support swaybar `mode` for configuring window
alebastr Sep 15, 2021
bc13453
feat(swaybar-ipc): handle mode update
alebastr Sep 15, 2021
ebdeb86
feat(swaybar-ipc): handle visibility_by_modifier update
alebastr Oct 20, 2020
6d2ba7a
feat(bar): store modes as a map of presets
alebastr Nov 20, 2021
ae88d7d
feat(bar): use "default" mode to store global options
alebastr Nov 20, 2021
87b43c2
feat(bar): attach CSS class `mode-{mode}` to window when setting mode
alebastr Nov 20, 2021
23e5181
feat(swaybar-ipc): add swaybar IPC client
alebastr Oct 20, 2020
5baffbf
doc: document swaybar ipc options, `ipc` and `id`
alebastr Nov 20, 2021
452dcaa
feat(client): store bar_id argument
alebastr Nov 20, 2021
52361ed
refactor(bar): make setVisible switch between "default" and "invisibl…
alebastr Nov 21, 2021
5905078
doc: document `mode` option of the bar config
alebastr Nov 20, 2021
6bfb674
fix(swaybar-ipc): better logs
alebastr Nov 22, 2021
2290fe1
fix(bar): handle ipc connection errors.
alebastr Nov 23, 2021
8fe42eb
doc: update `exclusive` and `passthrough` defaults
alebastr Nov 24, 2021
b4e1967
ci: increase FreeBSD VM memory to 2048MB
alebastr Nov 24, 2021
4b5dc1b
test: count copies and moves done by SafeSignal
alebastr Nov 28, 2021
cf5ddb2
fix(swaybar-ipc): avoid unnecessary copy of struct swaybar_config
alebastr Nov 28, 2021
b6d0a4b
feat(bar): allow customization of bar modes
alebastr Nov 28, 2021
05f7727
Merge branch 'master' into swaybar-ipc
Alexays Dec 1, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: update exclusive and passthrough defaults
  • Loading branch information
alebastr committed Nov 24, 2021
commit 8fe42ebd2eac1b6dbe79a18a5fe4ead9a78bac93
4 changes: 2 additions & 2 deletions man/waybar.5.scd.in
Original file line number Diff line number Diff line change
@@ -79,12 +79,12 @@ Also a minimal example configuration can be found on the at the bottom of this m

*exclusive* ++
typeof: bool ++
default: *true* unless the layer is set to *overlay* ++
default: *true* ++
Option to request an exclusive zone from the compositor. Disable this to allow drawing application windows underneath or on top of the bar.

*passthrough* ++
typeof: bool ++
default: *false* unless the layer is set to *overlay* ++
default: *false* ++
Option to pass any pointer events to the window under the bar.
Intended to be used with either *top* or *overlay* layers and without exclusive zone.