summaryrefslogtreecommitdiffstats
path: root/sway/config.c
Commit message (Collapse)AuthorAge
* New feature: adjust gaps with floating_mod+scrollLibravatar Drew DeVault2016-03-30
| | | | | | | | | | I made this configurable but I didn't make the command for it. That's left as an exercise to an eager contributor. mod_scroll_behavior [gaps inner|gaps outer] Would merge implementions of more behaviors for mod+scroll, if anyone has some neato ideas.
* Implement bordersLibravatar Mikkel Oscar Lyderik2016-03-30
| | | | | | | | | The borders are implemented as a surface/buffer attached to each view which is sent to and rendered by wlc in the view_pre_render callback. All the drawing logic is handled in sway/border.c and all the logic for calculating the geometry of the border/view is handled in `update_geometry` in sway/layout.c (same place as gaps are calculated).
* Add border <none|normal|toggle|pixel> configLibravatar Mikkel Oscar Lyderik2016-03-30
|
* Implement parsing of hide_edge_bordersLibravatar Mikkel Oscar Lyderik2016-03-30
|
* Make pango: prefix optional for font configLibravatar Mikkel Oscar Lyderik2016-03-30
|
* Add default border colorsLibravatar Mikkel Oscar Lyderik2016-03-30
|
* Don't try to read config if not a file.Libravatar Mikkel Oscar Lyderik2016-03-26
|
* Add config path to error msgLibravatar Mikkel Oscar Lyderik2016-03-26
|
* Implement include commandLibravatar Mikkel Oscar Lyderik2016-03-26
| | | | | | | | | | | | | | | | | | | | The include command (`include <path>`) makes it possible to include sub config files from the main config file (or from within other sub config files). The include command uses the following rules for including config files: * the `path` can be either a full path or a path that is relative to the parent config. Shell expansion is supported, so it's possible to do `include ~/.config/sway.d/*`. * The same config file can only be included once (to prevent include cycles). If a config is included multiple times it will just be ignored after it has been included once. * Including a sub config file is the same as inserting the content of that file into the parent config, thus rules about overwriting bindsyms etc. works the same as for a single config. Implement #542
* Gracefully exit when config is not foundLibravatar Mikkel Oscar Lyderik2016-03-24
| | | | | This makes sure that sway will gracefully exit if the config is not found or sway is unable to read it.
* Implement 'smart_gaps' feature from i3-gapsLibravatar Mikkel Oscar Lyderik2016-03-20
|
* Free config before exiting sway.Libravatar Mikkel Oscar Lyderik2016-02-27
| | | | | | Apart from freeing the sway_config struct, this also terminates the swaybars spawned by sway, since they are linked by PID to the bar config structs.
* Improve how swaybars are spawnedLibravatar Mikkel Oscar Lyderik2016-02-27
|
* Make sway spawn only one bar per bar configLibravatar Mikkel Oscar Lyderik2016-02-27
|
* font: Allow adding font to the config. In prep for border titlesLibravatar crondog2016-01-27
| | | | v2: Give default font and make bar use it if no bar font
* Fix issue #455Libravatar Yacine Hmito2016-01-21
| | | | | | | | CMAKE_INSTALL_FULL_SYSCONFIG is not actually passed to the C preprocessor. I remember it working, so I must have messed up somewhere last time I touched this. This is fixed by manually passing its value to the C preprocessor through the SYSCONFDIR definition
* Fix memory leak in config.cLibravatar Drew DeVault2016-01-21
| | | | Thanks @jollywho
* libinputLibravatar Cole Mickens2016-01-19
|
* Add support for bincode commandLibravatar Mikkel Oscar Lyderik2016-01-09
| | | | | If a bindsym and bincode maps to the same combination, the last one will overwrite any previous mappings.
* Add function for duplication a sway_bindingLibravatar Mikkel Oscar Lyderik2016-01-08
|
* Only send modifier event once for active modifiersLibravatar Mikkel Oscar Lyderik2016-01-05
| | | | | | | | This makes sure that a modifier event is only sent for active bar modifiers, and that it is only sent once for each of those modifiers. An active bar modifier is a modifier defined for a bar with `mode hide` and `hidden_state hide`.
* Detect bar modifier pressed/releasedLibravatar Mikkel Oscar Lyderik2016-01-05
|
* Use SYSCONFDIR as recommendedLibravatar Yacine Hmito2015-12-23
| | | | | - swaylock config path not hardcoded anymore - the unusual and weird FALLBACK_CONFIG_DIR is no more
* Merge pull request #393 from robotanarchy/musl-libc-compatibilityLibravatar Drew DeVault2015-12-21
|\ | | | | musl libc compatibility
| * replace non-standard qsort_r with qsortLibravatar robotanarchy2015-12-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I've tried to make as few changes, as possible. Usually the reason for using qsort_r is, that you can pass an extra userdata pointer to the compare function. However, in sway list_sort wrapped qsort_r and always called a wrapper function for comparing, the wrapper function then had the real compare function as argument. The only thing, that the wrapper function does, is dereferencing the 'left' and 'right' function arguments before passing them to the real compare function. I have renamed list_sort to list_qsort to avoid confusion (so nobody tries to use list_qsort like list_sort) and removed the wrapper functionality. Now the dereferencing must be done in the compare function, that gets passed. Some compare functions were used in both list_sort and list_seq_find. To make the difference clear, I've added a '_qsort' suffix to the compare functions, that are intended to be used with the new list_qsort. (In other words: list_qsort is not compatible anymore with list_seq_find). - Changed and renamed function (it isn't used anywhere but in commands.c, and only for sorting): compare_set -> compare_set_qsort - New wrapper functions: sway_binding_cmp_qsort (for sway_binding_cmp) sway_mouse_binding_cmp_qsort (for sway_mouse_binding_cmp)
* | Fix default swaybar fontLibravatar Drew DeVault2015-12-21
|/
* Merge pull request #372 from sce/fix_swaybar_output_name_testLibravatar Drew DeVault2015-12-20
|\ | | | | config: load_swaybars: Fix name comparison.
| * config: load_swaybars: Fix name comparison.Libravatar S. Christoffer Eliesen2015-12-20
| |
* | config: free_bar: Check if outputs is NULL.Libravatar S. Christoffer Eliesen2015-12-20
|/ | | | | bar_config.outputs is NULL if no output is explicitly defined in config (ie. use for for all outputs).
* Add support for running swaybar_commandLibravatar Mikkel Oscar Lyderik2015-12-19
|
* Merge pull request #359 from mikkeloscar/i3bar-commandLibravatar Drew DeVault2015-12-18
|\ | | | | Add bar option: swaybar_command <command>
| * Add bar option: swaybar_command <command>Libravatar Mikkel Oscar Lyderik2015-12-19
| |
* | Terminate children when freeing output containerLibravatar Mikkel Oscar Lyderik2015-12-18
| |
* | Reload swaybar/swaybg on config reload.Libravatar Mikkel Oscar Lyderik2015-12-18
|/ | | | | | | | This works by tracking the pids of the child processes in the related output container and terminating the processes and spawning new ones on a config reload. Should solve: #347
* Fix bar invocation for multihead setupLibravatar Drew DeVault2015-12-16
|
* Use system swaybar instead of local swaybarLibravatar Drew DeVault2015-12-16
|
* Invoke swaybar when an output matches a bar configLibravatar Drew DeVault2015-12-16
|
* Merge pull request #338 from mikkeloscar/bar-separator-symbolLibravatar Drew DeVault2015-12-16
|\ | | | | Implement bar option: separator_symbol
| * Implement bar option: separator_symbolLibravatar Mikkel Oscar Lyderik2015-12-16
| |
* | Use free_flat_list for simple char* list.Libravatar Mikkel Oscar Lyderik2015-12-16
|/ | | | No need to reimplement free_flat_list functionality.
* Correctly free bindings listLibravatar Mikkel Oscar Lyderik2015-12-15
|
* Implement bar option: output <output>Libravatar Mikkel Oscar Lyderik2015-12-15
|
* Fix active_workspace_border color definitionLibravatar Mikkel Oscar Lyderik2015-12-15
|
* Add bar height option (Airblader/i3)Libravatar Mikkel Oscar Lyderik2015-12-15
|
* Add rgba support for bar colorsLibravatar Mikkel Oscar Lyderik2015-12-15
|
* Implement bar option: colors {}Libravatar Mikkel Oscar Lyderik2015-12-15
|
* Merge pull request #324 from mikkeloscar/free-bar-bindingsLibravatar Drew DeVault2015-12-14
|\ | | | | Free bar->bindings
| * Free bar->bindingsLibravatar Mikkel Oscar Lyderik2015-12-15
| |
* | Move default bar config to bar creation.Libravatar Mikkel Oscar Lyderik2015-12-15
|/ | | | | Get rid of `config->bar` and define the default bar config options when a bar is initialized.
* Added bar_cmd_bindsymLibravatar Yacine Hmito2015-12-15
| | | | Defined a sway_mouse_binding for clicks on the swaybar