Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-01 | Add config related code and initial headers | Drew DeVault | |
2016-11-03 | swap unnecessary function for strndup | D.B | |
2016-11-02 | change bar colors from char[10] to *char | D.B | |
This commit removes has_* booleans from bar color struct. It also generalizes of functions in commands/bar/colors.c. | |||
2016-11-02 | use urgent_ws color in swaybar if binding_mode is undefined | D.B | |
2016-10-25 | Add left_handed support for input devices | Michał Winiarski | |
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> | |||
2016-10-20 | config: set pango_markup default to false | Mykyta Holubakha | |
2016-09-17 | Fix swaybar when running on named outputs. | Ryan Dwyer | |
When using a bar on a named output, load_swaybars() requires the output to be active (ie. in the root container), but this is not the case if the bar is added to the last output. To fix this, load_swaybars() is now called after the output has been added to the root container. After fixing that, swaybar would segfault due to using the wrong index variable when loading outputs and config. | |||
2016-09-01 | Reorganize includes | Drew DeVault | |
2016-08-20 | Avoid dereferencing null configuration | James Murphy | |
Fixes: https://github.com/SirCmpwn/sway/issues/865 | |||
2016-08-10 | Handle output disabling during runtime | D.B | |
Output now gets disabled if disable command is invoked via bindsym or IPC. | |||
2016-08-02 | fixed uninitialized bar.wrap_scroll | minus | |
2016-07-28 | Update hidpi support to latest wlc API | Drew DeVault | |
2016-07-28 | Initial pass on HiDPI support | Drew DeVault | |
2016-07-18 | clean up apply_input_config | minus | |
2016-07-17 | Turn swaybg into a shell surface | Drew DeVault | |
2016-06-11 | couple small fixes | Zandr Martin | |
2016-06-11 | cleanup + add timeouts for pid_workspace list | Zandr Martin | |
2016-06-11 | Merge branch 'master' into assign-command | Zandr Martin | |
2016-06-06 | Fix segfault when using include with * | thuck | |
This should fix the issue #681 | |||
2016-06-06 | messy, unfinished version | Zandr Martin | |
2016-06-02 | Initial implementation for floating_maximum_size | Denis Doria | |
2016-06-01 | Clean up not used variables | Denis Doria | |
2016-06-01 | Included option floating_minimum_size | Denis Doria | |
Values cannot be negative or 0; if so uses the default 75x50. Uses the same syntax as i3: floating_minimum_size <width> x <height>, although the x can be anything. | |||
2016-05-31 | Initial work for floating view with sane values | Denis Doria | |
2016-05-14 | Support floating_scroll sideways | Mykyta Holubakha | |
2016-05-08 | Remove FSB_GAPS_INNER and FSB_GAPS_OUTER | Mykyta Holubakha | |
2016-05-07 | Implemented configurable floating scroll behavior | Mykyta Holubakha | |
2016-05-05 | sway/config.c: fix double free issue as we need to store path in list | Daniel Lockyer | |
2016-05-01 | Add input cmd for setting pointer accel profile. | Jasen Borisov | |
2016-04-30 | sway/config.c: Initialise struct value | Daniel Lockyer | |
2016-04-29 | sway/config.c: Move the wordfree call before the if statement so it is ↵ | Daniel Lockyer | |
always called | |||
2016-04-29 | sway/config.c: Change to the useful free_cmd_results helper method | Daniel Lockyer | |
2016-04-29 | sway/config.c: move free call to after sway_log | Daniel Lockyer | |
2016-04-29 | sway/config.c: Leading on from cdf017c, we need to free path | Daniel Lockyer | |
2016-04-29 | sway/config.c: res->input is a malloc'ed section which wasn't freed | Daniel Lockyer | |
2016-04-29 | sway/config.c: wordexp has a corresponding wordfree which was never used | Daniel Lockyer | |
I had to change the assignment to path to be wrapped by strdup as we pass the data out of the method. | |||
2016-04-29 | sway/config.c: config_home is the result of a malloc but was never freed | Daniel Lockyer | |
2016-04-24 | Renamed to pango_markup | Mykyta Holubakha | |
2016-04-24 | Added plaintext markup configuration | Mykyta Holubakha | |
2016-03-31 | Add cmds new_window and new_float | Mikkel Oscar Lyderik | |
Makes it possible to set default layout style for new windows and new floating windows. Close #556 | |||
2016-03-30 | New feature: adjust gaps with floating_mod+scroll | Drew DeVault | |
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. | |||
2016-03-30 | Implement borders | Mikkel Oscar Lyderik | |
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). | |||
2016-03-30 | Add border <none|normal|toggle|pixel> config | Mikkel Oscar Lyderik | |
2016-03-30 | Implement parsing of hide_edge_borders | Mikkel Oscar Lyderik | |
2016-03-30 | Make pango: prefix optional for font config | Mikkel Oscar Lyderik | |
2016-03-30 | Add default border colors | Mikkel Oscar Lyderik | |
2016-03-26 | Don't try to read config if not a file. | Mikkel Oscar Lyderik | |
2016-03-26 | Add config path to error msg | Mikkel Oscar Lyderik | |
2016-03-26 | Implement include command | Mikkel Oscar Lyderik | |
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 | |||
2016-03-24 | Gracefully exit when config is not found | Mikkel Oscar Lyderik | |
This makes sure that sway will gracefully exit if the config is not found or sway is unable to read it. |