aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* zsh completions for swaylockLibravatar Aaron Ouellette2016-01-28
|
* Merge pull request #482 from crondog/movemouseLibravatar Drew DeVault2016-01-28
|\ | | | | commands: move position mouse
| * commands: move position mouseLibravatar crondog2016-01-28
| | | | | | | | | | Bounds checking works ok except it overlaps the bar. Just like with normal floating. Should be fixed once swaybar is fixed.
* | Print /proc/<pid>/maps on segfaultLibravatar Drew DeVault2016-01-28
| |
* | Merge pull request #480 from crondog/swaylocktrans2Libravatar Drew DeVault2016-01-27
|\ \ | |/ |/| swaylock: Allow for transparent color values
| * swaylock: Allow for transparent color valuesLibravatar crondog2016-01-28
|/ | | | | | | | There is only a slight issue. When using a transparent color the views are arranged to make room for swaylock which we can now see. I tried removing the arrange call but that just made it worse by putting in an opaque view on the workspace and not making the lockoverlay color. Ill raise an issue if this is not easily solved
* Merge pull request #479 from crondog/fontLibravatar Drew DeVault2016-01-27
|\ | | | | font: Allow adding font to the config. In prep for border titles
| * 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
* Remove pointer from swaylock surfaceLibravatar Drew DeVault2016-01-26
|
* Fix returning to sway after swaylock completesLibravatar Drew DeVault2016-01-26
|
* Merge pull request #478 from SethBarberee/swaymsg-zshLibravatar Mikkel Oscar Lyderik2016-01-26
|\ | | | | refactored to include single dash options
| * refactored to include single dash optionsLibravatar Seth Barberee2016-01-26
|/
* Merge pull request #476 from christophgysin/cairo_set_source_u32Libravatar Drew DeVault2016-01-25
|\ | | | | extract cairo_set_source_u32()
| * extract cairo_set_source_u32()Libravatar Christoph Gysin2016-01-25
|/
* Merge pull request #475 from christophgysin/swaylock_colorLibravatar Drew DeVault2016-01-25
|\ | | | | swaylock: implement --color
| * swaylock: support --colorLibravatar Christoph Gysin2016-01-25
| |
| * swaylock: extract render_imageLibravatar Christoph Gysin2016-01-25
|/
* Merge pull request #474 from christophgysin/swaylock_pamLibravatar Drew DeVault2016-01-25
|\ | | | | swaylock pam fixes
| * swaylock: don't memset memory that has been freedLibravatar Christoph Gysin2016-01-25
| | | | | | | | | | swaylock is randomly crashing because we write to password that has already been freed in pam_authenticate().
| * swaylock: fix pam conversationLibravatar Christoph Gysin2016-01-25
| |
| * swaylock: add pam conversation debug outputLibravatar Christoph Gysin2016-01-25
| |
| * swaylock: remove global variable pam_replyLibravatar Christoph Gysin2016-01-25
|/
* swaybar: Fix plaintext handling.Libravatar Mikkel Oscar Lyderik2016-01-25
| | | | Fix #473
* Fix colors off by oneLibravatar Mikkel Oscar Lyderik2016-01-25
|
* Merge pull request #471 from mikkeloscar/fix-exec-quotesLibravatar Drew DeVault2016-01-24
|\ | | | | Add quotes to multiword arguments.
| * Add quotes to multiword arguments.Libravatar Mikkel Oscar Lyderik2016-01-25
|/ | | | | | | | | | | | | | | | | | | | | This adds quotes around multiword arguments before they are passed to `/bin/sh -c` in an exec command. Example: I connect to irc like this: exec termite -e "mosh server tmux a" Without this patch the arguments are passed to sh as: termite -e mosh server tmux a When it should be: termite -e "mosh server tmux a" For the command to work.
* swaybar: move headers to include/barLibravatar Mikkel Oscar Lyderik2016-01-24
|
* Merge pull request #467 from mikkeloscar/swaybar-refactorLibravatar Drew DeVault2016-01-24
|\ | | | | [WIP] Swaybar refactor
| * swaybar: cleanup CmakeLists.txtLibravatar Mikkel Oscar Lyderik2016-01-24
| |
| * swaybar: rename state to barLibravatar Mikkel Oscar Lyderik2016-01-24
| |
| * swaybar: move core functionality to state.cLibravatar Mikkel Oscar Lyderik2016-01-24
| |
| * swaybar: Move swaybar_teardown to free_stateLibravatar Mikkel Oscar Lyderik2016-01-24
| |
| * swaybar: move ipc stuff to ipc.{h,c}Libravatar Mikkel Oscar Lyderik2016-01-24
| |
| * swaybar: feactor render, statuslineLibravatar Mikkel Oscar Lyderik2016-01-24
| |
| * swaybar: Separate configLibravatar Mikkel Oscar Lyderik2016-01-24
|/
* numlen(0) == 1Libravatar Mikkel Oscar Lyderik2016-01-24
|
* use log10 in numlenLibravatar Mikkel Oscar Lyderik2016-01-24
|
* Merge pull request #457 from mikkeloscar/move-view-fixLibravatar Drew DeVault2016-01-23
|\ | | | | Fix rendering of view when moving to new workspace
| * Fix rendering of view when moving to new workspaceLibravatar Mikkel Oscar Lyderik2016-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | This is a possible fix for #384. To be honest I don't fully understand why this bug is happening, but I have narrowed it down to the view stack in wlc and how sway orders views in very specific situations (those described in #384). Anyway this should fix the problem by eliminating the call to `wlc_view_bring_to_front` which isn't really needed anyway since sending all invisible views to the back is the same as bringing all visible views to the front (rotating the view stack).
* | Add new wlc thing to viewsLibravatar Drew DeVault2016-01-23
| |
* | Revert "s/numlen/log10/g"Libravatar Drew DeVault2016-01-23
| | | | | | | | This reverts commit 038bb8cc7c4dee77f8ee4ba3ac1ffc47409b2370.
* | s/numlen/log10/gLibravatar Drew DeVault2016-01-23
| |
* | Merge pull request #466 from christophgysin/swaybar_usageLibravatar Drew DeVault2016-01-23
|\ \ | | | | | | swaybar: add usage
| * | swaybar: add --help optionLibravatar Christoph Gysin2016-01-23
| | |
| * | swaybar: debug option takes no argumentLibravatar Christoph Gysin2016-01-23
| | |
* | | Merge pull request #464 from christophgysin/swaylockLibravatar Drew DeVault2016-01-23
|\ \ \ | | | | | | | | swaylock: option parsing
| * | | swaylock: add i3lock compatible optionsLibravatar Christoph Gysin2016-01-23
| | | |
| * | | swaylock: add option parsingLibravatar Christoph Gysin2016-01-23
| | | |
* | | | Merge pull request #465 from sardemff7/masterLibravatar Drew DeVault2016-01-23
|\ \ \ \ | |_|/ / |/| | | Some fixes in commands/assign
| * | | commands: Fix memory allocation in assignLibravatar Quentin Glidic2016-01-23
| | | | | | | | | | | | | | | | | | | | | | | | Also use the safer snprintf since we just computed the size. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>