aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorLines
2016-01-25swaylock: support --colorChristoph Gysin-18/+46
2016-01-25swaylock: extract render_imageChristoph Gysin-85/+92
2016-01-25Merge pull request #474 from christophgysin/swaylock_pamDrew DeVault-9/+33
swaylock pam fixes
2016-01-25swaylock: don't memset memory that has been freedChristoph Gysin-5/+4
swaylock is randomly crashing because we write to password that has already been freed in pam_authenticate().
2016-01-25swaylock: fix pam conversationChristoph Gysin-5/+15
2016-01-25swaylock: add pam conversation debug outputChristoph Gysin-0/+14
2016-01-25swaylock: remove global variable pam_replyChristoph Gysin-4/+5
2016-01-25swaybar: Fix plaintext handling.Mikkel Oscar Lyderik-1/+1
Fix #473
2016-01-25Fix colors off by oneMikkel Oscar Lyderik-4/+4
2016-01-24Merge pull request #471 from mikkeloscar/fix-exec-quotesDrew DeVault-0/+33
Add quotes to multiword arguments.
2016-01-25Add quotes to multiword arguments.Mikkel Oscar Lyderik-0/+33
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.
2016-01-24swaybar: move headers to include/barMikkel Oscar Lyderik-14/+14
2016-01-24Merge pull request #467 from mikkeloscar/swaybar-refactorDrew DeVault-1214/+1531
[WIP] Swaybar refactor
2016-01-24swaybar: cleanup CmakeLists.txtMikkel Oscar Lyderik-1/+0
2016-01-24swaybar: rename state to barMikkel Oscar Lyderik-273/+274
2016-01-24swaybar: move core functionality to state.cMikkel Oscar Lyderik-119/+126
2016-01-24swaybar: Move swaybar_teardown to free_stateMikkel Oscar Lyderik-49/+87
2016-01-24swaybar: move ipc stuff to ipc.{h,c}Mikkel Oscar Lyderik-301/+359
2016-01-24swaybar: feactor render, statuslineMikkel Oscar Lyderik-840/+968
2016-01-24swaybar: Separate configMikkel Oscar Lyderik-171/+257
2016-01-24numlen(0) == 1Mikkel Oscar Lyderik-1/+1
2016-01-24use log10 in numlenMikkel Oscar Lyderik-7/+7
2016-01-23Merge pull request #457 from mikkeloscar/move-view-fixDrew DeVault-3/+1
Fix rendering of view when moving to new workspace
2016-01-23Add new wlc thing to viewsDrew DeVault-0/+1
2016-01-23Revert "s/numlen/log10/g"Drew DeVault-5/+18
This reverts commit 038bb8cc7c4dee77f8ee4ba3ac1ffc47409b2370.
2016-01-23s/numlen/log10/gDrew DeVault-18/+5
2016-01-23Merge pull request #466 from christophgysin/swaybar_usageDrew DeVault-2/+17
swaybar: add usage
2016-01-23swaybar: add --help optionChristoph Gysin-1/+16
2016-01-23Merge pull request #464 from christophgysin/swaylockDrew DeVault-2/+61
swaylock: option parsing
2016-01-23Merge pull request #465 from sardemff7/masterDrew DeVault-4/+7
Some fixes in commands/assign
2016-01-23swaybar: debug option takes no argumentChristoph Gysin-1/+1
2016-01-23commands: Fix memory allocation in assignQuentin Glidic-3/+3
Also use the safer snprintf since we just computed the size. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2016-01-23commands: Fix usage of arrow in assignQuentin Glidic-1/+4
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2016-01-23travis: remove wlc dep: xcb-util-wmMikkel Oscar Lyderik-1/+0
2016-01-23swaylock: add i3lock compatible optionsChristoph Gysin-6/+27
2016-01-23travis: don't build wlc, depend on wlc-git insteadMikkel Oscar Lyderik-25/+3
2016-01-23swaylock: add option parsingChristoph Gysin-2/+40
2016-01-23Merge pull request #463 from christophgysin/typoDrew DeVault-1/+1
sway-input: fix typo
2016-01-23Add xcb-util-wm to PKGBUILDDrew DeVault-0/+1
2016-01-23sway-input: fix typoChristoph Gysin-1/+1
2016-01-22manpage: fix sway-input layoutMikkel Oscar Lyderik-9/+9
2016-01-22manpage: add references sway.5 <-> sway-input.5Mikkel Oscar Lyderik-0/+10
2016-01-22Fix generating sway-input.5 manpageMikkel Oscar Lyderik-3/+4
2016-01-22Merge pull request #461 from SethBarberee/swaygrab-zshDrew DeVault-15/+10
restructured to include single dash options
2016-01-22restructured to include single dash optionsSeth Barberee-15/+10
2016-01-22cmake: fix libinput include dirsMikkel Oscar Lyderik-2/+1
2016-01-22Merge pull request #459 from crondog/sigpipeMikkel Oscar Lyderik-0/+3
Prevent ipc from crashing sway
2016-01-22Prevent ipc from crashing swaycrondog-0/+3
2016-01-21Fix rendering of view when moving to new workspaceMikkel Oscar Lyderik-3/+1
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).
2016-01-21Only update visibility if WS isn't destroyed afterMikkel Oscar Lyderik-2/+3
No need to update visibility if the workspace will be destroyed right after.