Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-13 | Update output containers on output layout change | emersion | |
2017-12-12 | Update output container box in event handler | emersion | |
2017-12-12 | Listen to output layout change | emersion | |
2017-12-12 | Add scale and transform events to sway_output | emersion | |
2017-12-06 | Add new_output_config, update root container size on output hotplug | emersion | |
2017-12-06 | Merge branch 'wlroots' into output-config | emersion | |
2017-12-06 | view activate | Tony Crisci | |
2017-12-06 | Init, merge output config params, use wlr_output_layout | emersion | |
2017-12-06 | Add output config | emersion | |
2017-12-05 | Merge pull request #1498 from emersion/config | Drew DeVault | |
Add minimal config subsystem | |||
2017-12-05 | Remove wlc includes | emersion | |
2017-12-05 | view set position | Tony Crisci | |
2017-12-05 | Add minimal config subsystem | emersion | |
2017-12-04 | Merge branch 'wlroots' into feature/xwayland | Tony Crisci | |
2017-12-04 | xwayland shell | Tony Crisci | |
2017-12-03 | wl-shell: class instead of app_id | Tony Crisci | |
2017-12-03 | Merge branch 'wlroots' into feature/wl-shell | Tony Crisci | |
2017-12-03 | basic wl-shell | Tony Crisci | |
2017-12-03 | use "size" instead of "dimensions" | Tony Crisci | |
2017-12-03 | sway wl_shell | Tony Crisci | |
2017-12-03 | basic get_tree | Tony Crisci | |
2017-11-25 | Handle view destruction properly | Drew DeVault | |
2017-11-25 | Fix rendering issues, wire up some xdg listeners | Drew DeVault | |
2017-11-25 | Arrange windows on desktop | Drew DeVault | |
2017-11-22 | Wire up IPC server | Drew DeVault | |
2017-11-22 | Add initial command subsystem (untested) | Drew DeVault | |
Need to spin up the IPC server to test this | |||
2017-11-22 | Add views to tree and render them | Drew DeVault | |
2017-11-22 | Add workspace to outputs | Drew DeVault | |
2017-11-23 | wlr_data_device header update | Dominique Martinet | |
wlroots 6a7560 renamed the header file | |||
2017-11-19 | Add outputs to the tree | Drew DeVault | |
2017-11-18 | Move everything to sway/old/ | Drew DeVault | |
2017-11-11 | Initial (awful) pass on xdg shell support | Drew DeVault | |
2017-11-11 | Wire up output frame loop | Drew DeVault | |
2017-11-11 | Initialize outputs from backend and add to tree | Drew DeVault | |
2017-11-11 | Establish sway input submodule | Drew DeVault | |
2017-11-11 | Fix build yml files | Drew DeVault | |
2017-11-11 | Fire up the wlroots backend and run the event loop | Drew DeVault | |
2017-10-08 | Merge pull request #1263 from nyorain/master | Drew DeVault | |
Implement get_clipboard ipc message | |||
2017-07-12 | Use WLC v2 pointer interface | Scott Anderson | |
2017-07-07 | Rework get_clipboard implementation | nyorain | |
2017-07-07 | Implement ipc get_clipboard | nyorain | |
2017-07-01 | Add the 'clipboard' command to set the clipboard | nyorain | |
2017-06-14 | Merge branch 'master' into server-decoration | Drew DeVault | |
2017-06-07 | Implement Tray Icons | Calvin Lee | |
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-04-28 | Implement KDE's server-side decoration protocol | Drew DeVault | |
2017-04-26 | Implement no_focus | Drew DeVault | |
Ref #2 | |||
2017-04-16 | Move get_feature_policy to sway/security.c | Jerzi Kaminsky | |
2017-04-16 | Disambiguate get_*_policy() and get_*_policy_mask() | Jerzi Kaminsky | |
2017-04-10 | Merge branch 'master' into pretty-print-swaymsg | Drew DeVault | |
2017-04-05 | Improve criteria handling | Calvin Lee | |
This commit changes how commands decide what container to act on. Commands get the current container though `current_container`, a global defined in sway/commands.c. If a criteria is given before a command, then the following command will be run once for every container the criteria matches with a reference to the matching container in 'current_container'. Commands should use this instead of `get_focused_container()` from now on. This commit also fixes a few (minor) mistakes made in implementing marks such as non-escaped arrows in sway(5) and calling the "mark" command "floating" by accident. It also cleans up `criteria.c` in a few places. |