aboutsummaryrefslogtreecommitdiff
path: root/include/sway
AgeCommit message (Collapse)Author
2017-12-13Update output containers on output layout changeemersion
2017-12-12Update output container box in event handleremersion
2017-12-12Listen to output layout changeemersion
2017-12-12Add scale and transform events to sway_outputemersion
2017-12-06Add new_output_config, update root container size on output hotplugemersion
2017-12-06Merge branch 'wlroots' into output-configemersion
2017-12-06view activateTony Crisci
2017-12-06Init, merge output config params, use wlr_output_layoutemersion
2017-12-06Add output configemersion
2017-12-05Merge pull request #1498 from emersion/configDrew DeVault
Add minimal config subsystem
2017-12-05Remove wlc includesemersion
2017-12-05view set positionTony Crisci
2017-12-05Add minimal config subsystememersion
2017-12-04Merge branch 'wlroots' into feature/xwaylandTony Crisci
2017-12-04xwayland shellTony Crisci
2017-12-03wl-shell: class instead of app_idTony Crisci
2017-12-03Merge branch 'wlroots' into feature/wl-shellTony Crisci
2017-12-03basic wl-shellTony Crisci
2017-12-03use "size" instead of "dimensions"Tony Crisci
2017-12-03sway wl_shellTony Crisci
2017-12-03basic get_treeTony Crisci
2017-11-25Handle view destruction properlyDrew DeVault
2017-11-25Fix rendering issues, wire up some xdg listenersDrew DeVault
2017-11-25Arrange windows on desktopDrew DeVault
2017-11-22Wire up IPC serverDrew DeVault
2017-11-22Add initial command subsystem (untested)Drew DeVault
Need to spin up the IPC server to test this
2017-11-22Add views to tree and render themDrew DeVault
2017-11-22Add workspace to outputsDrew DeVault
2017-11-23wlr_data_device header updateDominique Martinet
wlroots 6a7560 renamed the header file
2017-11-19Add outputs to the treeDrew DeVault
2017-11-18Move everything to sway/old/Drew DeVault
2017-11-11Initial (awful) pass on xdg shell supportDrew DeVault
2017-11-11Wire up output frame loopDrew DeVault
2017-11-11Initialize outputs from backend and add to treeDrew DeVault
2017-11-11Establish sway input submoduleDrew DeVault
2017-11-11Fix build yml filesDrew DeVault
2017-11-11Fire up the wlroots backend and run the event loopDrew DeVault
2017-10-08Merge pull request #1263 from nyorain/masterDrew DeVault
Implement get_clipboard ipc message
2017-07-12Use WLC v2 pointer interfaceScott Anderson
2017-07-07Rework get_clipboard implementationnyorain
2017-07-07Implement ipc get_clipboardnyorain
2017-07-01Add the 'clipboard' command to set the clipboardnyorain
2017-06-14Merge branch 'master' into server-decorationDrew DeVault
2017-06-07Implement Tray IconsCalvin 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-28Implement KDE's server-side decoration protocolDrew DeVault
2017-04-26Implement no_focusDrew DeVault
Ref #2
2017-04-16Move get_feature_policy to sway/security.cJerzi Kaminsky
2017-04-16Disambiguate get_*_policy() and get_*_policy_mask()Jerzi Kaminsky
2017-04-10Merge branch 'master' into pretty-print-swaymsgDrew DeVault
2017-04-05Improve criteria handlingCalvin 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.