aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorLines
2016-03-30Mark focused view focus_inactive on unfocused outputMikkel Oscar Lyderik-0/+9
2016-03-30Handle swaybar using sway fontMikkel Oscar Lyderik-1/+3
2016-03-30Comment endiannessMikkel Oscar Lyderik-2/+2
2016-03-30Implement bordersMikkel Oscar Lyderik-149/+386
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-30Add border <none|normal|toggle|pixel> configMikkel Oscar Lyderik-4/+69
2016-03-30Implement parsing of hide_edge_bordersMikkel Oscar Lyderik-0/+39
2016-03-30Make client/pango.h not depend on client/window.hMikkel Oscar Lyderik-28/+26
2016-03-30Make pango: prefix optional for font configMikkel Oscar Lyderik-7/+7
2016-03-30Add default border colorsMikkel Oscar Lyderik-0/+51
2016-03-30Implement some more on bordersDrew DeVault-24/+109
Note that this segfaults ALL THE TIME in wlc code. Paging @Cloudef for help, I'm at a loss.
2016-03-30Window borders proof of conceptDrew DeVault-5/+20
2016-03-30Initial setup of window border renderingDrew DeVault-0/+53
Please don't complain to me about the performance of this
2016-03-29Merge pull request #553 from Hummer12007/masterDrew DeVault-1/+1
Fix a typo in swaygrab manual
2016-03-29Fix a typo in swaygrab manualHummer12007-1/+1
2016-03-28Merge pull request #549 from Hummer12007/patch-1Drew DeVault-1/+1
Add -R option to getopt opt_string
2016-03-28Added -R option to getopt opt_stringHummer12007-1/+1
2016-03-27Update default configDrew DeVault-9/+11
2016-03-27Loosen restrictions on commands, update docsDrew DeVault-16/+22
Closes #531
2016-03-27Update sway(1)Drew DeVault-2/+2
2016-03-27Squash warning about uninitialized variableDrew DeVault-1/+1
2016-03-26Update default config to suggest includeDrew DeVault-0/+8
2016-03-26Merge pull request #546 from mikkeloscar/include-handle-dirDrew DeVault-0/+6
Don't try to read config if not a file.
2016-03-26Don't try to read config if not a file.Mikkel Oscar Lyderik-0/+6
2016-03-26Merge pull request #544 from mikkeloscar/add-include-commandDrew DeVault-39/+163
Add include command
2016-03-26Add config path to error msgMikkel Oscar Lyderik-2/+2
2016-03-26Load correct config on reloadMikkel Oscar Lyderik-1/+3
2016-03-26Document include commandMikkel Oscar Lyderik-0/+4
2016-03-26Implement include commandMikkel Oscar Lyderik-37/+155
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-25Update README.mdDrew DeVault-2/+1
2016-03-25Update README.md packaging infoDrew DeVault-3/+3
2016-03-25Fix link to PGP keyDrew DeVault-1/+1
2016-03-25Merge pull request #543 from fluxchief/masterDrew DeVault-74/+253
Add graphical feedback to swaylock (#526)
2016-03-25Add graphical feedback to swaylock (#526)Kevin Hamacher-74/+253
2016-03-24Merge pull request #538 from nuew/display-imagesDrew DeVault-38/+132
Add choice of display to --image.
2016-03-24Replace with in swaylockNuew-6/+5
2016-03-24Merge branch 'master' into display-imagesEthan-0/+5
2016-03-24Change 'display' to 'output' in swaylock error messages where necessaryNuew-4/+4
2016-03-24Change 'display' to 'output' in swaylock docs where necessaryNuew-9/+9
2016-03-24CMake: add missing wlc include dir for common and swaygrabDominique Martinet-0/+5
2016-03-24Add choice of display to --image.Nuew-37/+132
Additionally - Made background colors display when an image is enabled if a --color is specified. - Link CJson to swaylock. - Add the --socket option to swaylock.
2016-03-24Merge pull request #537 from mikkeloscar/exit-on-config-missingDrew DeVault-3/+8
Gracefully exit when config is not found
2016-03-24Gracefully exit when config is not foundMikkel Oscar Lyderik-3/+8
This makes sure that sway will gracefully exit if the config is not found or sway is unable to read it.
2016-03-24Make the nvidia warning louderDrew DeVault-0/+1
2016-03-24Merge pull request #536 from jcaesar/masterDrew DeVault-0/+8
swaylock: Interpret XKB_KEY_BackSpace as a deletion instead of a normal key.
2016-03-24swaylock: Interpret XKB_KEY_BackSpace as a deletion instead of a normal key.Julius Michaelis-0/+8
2016-03-24Update READMEDrew DeVault-3/+3
2016-03-24Don't set WLC_DIM on startup0.1Drew DeVault-1/+0
2016-03-24Update to new WLC APIDrew DeVault-37/+23
2016-03-23Merge pull request #535 from mikkeloscar/fix-swaylock-crashDrew DeVault-1/+7
swaylock: Fix crash when unable to connect to sway
2016-03-23swaylock: Fix crash when unable to connect to wlMikkel Oscar Lyderik-1/+7
Prevent swaylock from crashing when it can't connect to wayland for whatever reason. i.e. XDG_RUNTIME_DIR not set. Fix #534