Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-22 | Initialize id, part two | Drew DeVault | |
2015-12-22 | Initialize ID | Drew DeVault | |
2015-12-21 | Merge pull request #393 from robotanarchy/musl-libc-compatibility | Drew DeVault | |
musl libc compatibility | |||
2015-12-22 | replace non-standard qsort_r with qsort | robotanarchy | |
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) | |||
2015-12-21 | Trigger event on bar mode|hidden_state commands | Mikkel Oscar Lyderik | |
2015-12-21 | Handle bar commands outside config file | Mikkel Oscar Lyderik | |
Our initial implementation of `bar { }` assumed that the commands could only be used in the config. This is not true for two commands: * bar mode * bar hidden_state This patch makes it possible to issue these commands outside a bar block, for instance through swaymsg $ swaymsg bar mode hide bar-0 This does not implement the `barconfig_update` IPC event which should be trigged from these commands. I have added TODO's where this should be added once implemented. | |||
2015-12-18 | Fix default workspace name generation | Drew DeVault | |
This fixes the issue where workspace 10 ends up being the default. | |||
2015-12-18 | Merge pull request #359 from mikkeloscar/i3bar-command | Drew DeVault | |
Add bar option: swaybar_command <command> | |||
2015-12-19 | Add bar option: swaybar_command <command> | Mikkel Oscar Lyderik | |
2015-12-18 | Reload swaybar/swaybg on config reload. | Mikkel Oscar Lyderik | |
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 | |||
2015-12-18 | sway: enable workspace selection by number | progandy | |
2015-12-16 | Invoke swaybar when an output matches a bar config | Drew DeVault | |
2015-12-16 | Implement bar option: separator_symbol | Mikkel Oscar Lyderik | |
2015-12-15 | Merge pull request #335 from mikkeloscar/bar-font | Drew DeVault | |
Implement bar option: font <font> | |||
2015-12-15 | Implement bar option: font <font> | Mikkel Oscar Lyderik | |
2015-12-15 | Implement bar option: binding_mode_indicator <yes|no> | Mikkel Oscar Lyderik | |
2015-12-15 | Implement bar option: output <output> | Mikkel Oscar Lyderik | |
2015-12-15 | Add bar height option (Airblader/i3) | Mikkel Oscar Lyderik | |
2015-12-15 | Add rgba support for bar colors | Mikkel Oscar Lyderik | |
2015-12-15 | Implement bar option: colors {} | Mikkel Oscar Lyderik | |
2015-12-15 | Remove a couple of unwanted spaces | Mikkel Oscar Lyderik | |
2015-12-14 | Merge pull request #325 from gpyh/bar_cmd_modifier | Drew DeVault | |
Added bar_cmd_modifier | |||
2015-12-15 | Added bar_cmd_modifier | Yacine Hmito | |
2015-12-14 | Merge pull request #323 from gpyh/bar_cmd_status_command | Drew DeVault | |
Added bar_cmd_status_command | |||
2015-12-15 | Added bar_cmd_status_command | Yacine Hmito | |
2015-12-15 | Move default bar config to bar creation. | Mikkel Oscar Lyderik | |
Get rid of `config->bar` and define the default bar config options when a bar is initialized. | |||
2015-12-15 | Added bar_cmd_bindsym | Yacine Hmito | |
Defined a sway_mouse_binding for clicks on the swaybar | |||
2015-12-14 | Merge pull request #320 from mikkeloscar/configure-mouse-btn2 | Drew DeVault | |
Lookup dragging key when in dragging mode | |||
2015-12-14 | Make mouse key used for drag/resize configurable | Mikkel Oscar Lyderik | |
This makes it possible to define what mouse button key (left|right) to use for dragging/resizing. | |||
2015-12-14 | Implement bar option: mode <dock|hide|invisible> | Mikkel Oscar Lyderik | |
2015-12-14 | Implement bar option: hidden_state <hide|show> | Mikkel Oscar Lyderik | |
2015-12-14 | Implement bar option: id <custom-id> | Mikkel Oscar Lyderik | |
If the id is defined by another bar it will just use the default id for the bar. Typically `bar-x`. If the id command is used multiple times within a bar block, the last one will 'win'. | |||
2015-12-14 | Merge pull request #314 from mikkeloscar/bar-id | Drew DeVault | |
Add initial support for custom bar-id | |||
2015-12-14 | Add bar id to debug logs | Mikkel Oscar Lyderik | |
2015-12-14 | Add initial support for custom bar-id | Mikkel Oscar Lyderik | |
2015-12-14 | Fix crash in bar { } blocks | Drew DeVault | |
2015-12-14 | Merge pull request #313 from mikkeloscar/bar-confing-subcommands | Drew DeVault | |
Bar confing subcommands | |||
2015-12-14 | Add more debug logging to bar option parsing | Mikkel Oscar Lyderik | |
2015-12-14 | Implement bar option: position <top|bottom|left|right> | Mikkel Oscar Lyderik | |
2015-12-14 | Implement bar option: strip_workspace_numbers <yes|no> | Mikkel Oscar Lyderik | |
2015-12-14 | Revert "Make mouse key used for drag/resize configurable" | Drew DeVault | |
This reverts commit 22916e9ebc130dbd365e6403730b9e0857977b8e. | |||
2015-12-14 | Add tray_output not supported warning | Mikkel Oscar Lyderik | |
2015-12-14 | Implement bar option: tray_padding <px> [px] | Mikkel Oscar Lyderik | |
2015-12-14 | Implement bar option: workspace_buttons <yes|no> | Mikkel Oscar Lyderik | |
2015-12-14 | Implement 'bar { }' block parsing | Mikkel Oscar Lyderik | |
2015-12-13 | Track the fullscreen view on a workspace swayc_t | Drew DeVault | |
2015-12-11 | Make mouse key used for drag/resize configurable | Mikkel Oscar Lyderik | |
This makes it possible to define what mouse button key (left|right) to use for dragging/resizing. | |||
2015-11-29 | Add framework for switching command sets | Drew DeVault | |
This will allow the bar {} block to have a different command set (and also bar { colors { } }. | |||
2015-11-29 | Merge pull request #278 from christophgysin/merge | Drew DeVault | |
cmd_output: Merge instead of replace output config | |||
2015-11-29 | cmd_output: Merge instead of replace output config | Christoph Gysin | |