aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/commands.h
Commit message (Collapse)AuthorAge
* Implement opacity commandLibravatar Tony Crisci2018-04-04
|
* Add default_orientation commandLibravatar Drew DeVault2018-03-30
|
* Add swaybg_commandLibravatar Drew DeVault2018-03-29
|
* Add bar configuration commandsLibravatar Drew DeVault2018-03-29
|
* take seat param for handle_command and renameLibravatar Tony Crisci2018-02-24
|
* seat fallback configLibravatar Tony Crisci2017-12-17
|
* rename config apply cmdsLibravatar Tony Crisci2017-12-16
|
* xkb configLibravatar Tony Crisci2017-12-15
|
* basic configurationLibravatar Tony Crisci2017-12-14
|
* seat configurationLibravatar Tony Crisci2017-12-12
|
* input configLibravatar Tony Crisci2017-12-11
|
* Add minimal config subsystemLibravatar emersion2017-12-05
|
* Add initial command subsystem (untested)Libravatar Drew DeVault2017-11-22
| | | | Need to spin up the IPC server to test this
* Move everything to sway/old/Libravatar Drew DeVault2017-11-18
|
* Add the 'clipboard' command to set the clipboardLibravatar nyorain2017-07-01
|
* Implement Tray IconsLibravatar Calvin Lee2017-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Implement no_focusLibravatar Drew DeVault2017-04-26
| | | | Ref #2
* Improve criteria handlingLibravatar Calvin Lee2017-04-05
| | | | | | | | | | | | | | 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.
* Impliment i3-style marksLibravatar Calvin Lee2017-04-03
| | | | | | | | This commit adds three commands to sway: `show_marks`, `mark` and `unmark`. Marks are displayed right-aligned in the window border as i3 does. Marks may be found using criteria. Fixes #1007
* deprecate new_window and new_float commandsLibravatar Zandr Martin2017-03-09
|
* Add IPC security policy command handlersLibravatar Drew DeVault2016-12-02
|
* Enforce command policiesLibravatar Drew DeVault2016-12-02
|
* Add support for command policies in config fileLibravatar Drew DeVault2016-12-02
|
* Implement permit and reject commandsLibravatar Drew DeVault2016-12-01
|
* add bar colours for focused_(workspace|statusline|separator)Libravatar D.B2016-11-02
| | | | | If these aren't defined in config, color settings without 'focused_' prefix are used as a fallback.
* Add left_handed support for input devicesLibravatar Michał Winiarski2016-10-25
| | | | | | | Some users may want to switch buttons on their input devices, turns out libinput already supports it. Let's add a support for it in our config. Signed-off-by: Michał Winiarski <knr@hardline.pl>
* add force_focus_wrapping optionLibravatar D.B2016-10-07
|
* Merge branch 'master' of git://github.com/SirCmpwn/sway into commands-refactorLibravatar Zandr Martin2016-09-02
|
* Reorganize includesLibravatar Drew DeVault2016-09-01