summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* use tabsLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Improve _swaymsg and _swaygrab completionsLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Autocomplete scale optionsLibravatar Mikkel Oscar Lyderik2016-01-29
|
* complete image, not colorLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Add files completion to _swaylockLibravatar Mikkel Oscar Lyderik2016-01-29
|
* Merge pull request #483 from aouelete/zsh-swaylock-completionLibravatar Mikkel Oscar Lyderik2016-01-29
|\ | | | | zsh completions for swaylock
| * 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
| | |