Drew DeVault
f8de29baf6
Merge pull request #464 from christophgysin/swaylock
...
swaylock: option parsing
2016-01-23 14:27:28 -05:00
Drew DeVault
78b2808c52
Merge pull request #465 from sardemff7/master
...
Some fixes in commands/assign
2016-01-23 14:26:45 -05:00
Christoph Gysin
bba72fb21a
swaybar: debug option takes no argument
2016-01-23 21:23:00 +02:00
Quentin Glidic
449617f104
commands: Fix memory allocation in assign
...
Also use the safer snprintf since we just computed the size.
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2016-01-23 20:22:51 +01:00
Quentin Glidic
43483d8fee
commands: Fix usage of arrow in assign
...
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2016-01-23 20:22:51 +01:00
Mikkel Oscar Lyderik
06f6552eed
travis: remove wlc dep: xcb-util-wm
2016-01-23 16:40:39 +01:00
Christoph Gysin
7b25caba47
swaylock: add i3lock compatible options
2016-01-23 16:36:19 +02:00
Mikkel Oscar Lyderik
a3f809d95d
travis: don't build wlc, depend on wlc-git instead
2016-01-23 15:11:23 +01:00
Christoph Gysin
259dc25ba3
swaylock: add option parsing
2016-01-23 16:00:14 +02:00
Drew DeVault
6a5acde592
Merge pull request #463 from christophgysin/typo
...
sway-input: fix typo
2016-01-23 07:52:47 -05:00
Drew DeVault
a297df4a1f
Add xcb-util-wm to PKGBUILD
2016-01-23 07:39:03 -05:00
Christoph Gysin
2341ae64ad
sway-input: fix typo
2016-01-23 14:08:52 +02:00
Mikkel Oscar Lyderik
102719c7dd
manpage: fix sway-input layout
2016-01-22 19:26:13 +01:00
Mikkel Oscar Lyderik
54111839a4
manpage: add references sway.5 <-> sway-input.5
2016-01-22 19:26:13 +01:00
Mikkel Oscar Lyderik
e953f634d9
Fix generating sway-input.5 manpage
2016-01-22 19:26:13 +01:00
Drew DeVault
c2bf457b9f
Merge pull request #461 from SethBarberee/swaygrab-zsh
...
restructured to include single dash options
2016-01-22 13:18:33 -05:00
Seth Barberee
f8edda5939
restructured to include single dash options
2016-01-22 10:45:21 -06:00
Mikkel Oscar Lyderik
4cbb09d566
cmake: fix libinput include dirs
2016-01-22 05:17:33 +01:00
Mikkel Oscar Lyderik
701855fee5
Merge pull request #459 from crondog/sigpipe
...
Prevent ipc from crashing sway
2016-01-22 02:51:51 +01:00
crondog
cd0eaf00da
Prevent ipc from crashing sway
2016-01-22 12:29:18 +11:00
Mikkel Oscar Lyderik
fa0526f3df
Fix rendering of view when moving to new workspace
...
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-21 22:28:26 +01:00
Mikkel Oscar Lyderik
2c43bd2ac8
Only update visibility if WS isn't destroyed after
...
No need to update visibility if the workspace will be destroyed right
after.
2016-01-21 22:05:06 +01:00
Drew DeVault
72f297fc71
Merge pull request #456 from gpyh/fix-config-dir
...
Fix issue #455
2016-01-21 15:15:50 -05:00
Yacine Hmito
c487cf71a5
Fix issue #455
...
CMAKE_INSTALL_FULL_SYSCONFIG is not actually passed to
the C preprocessor. I remember it working, so I must have
messed up somewhere last time I touched this.
This is fixed by manually passing its value to the C preprocessor
through the SYSCONFDIR definition
2016-01-21 21:08:18 +01:00
Drew DeVault
d969a1dec0
Fix memory leak in config.c
...
Thanks @jollywho
2016-01-21 11:18:13 -05:00
Mikkel Oscar Lyderik
ac740271a5
Strip stray whitespace
2016-01-21 17:03:21 +01:00
Drew DeVault
a6b19988c5
Merge pull request #440 from SethBarberee/zsh-completions
...
Basic Zsh auto-completion for --options
2016-01-19 18:50:12 -05:00
Drew DeVault
b72a62b02b
Merge pull request #448 from colemickens/libinput
...
libinput configuration
2016-01-19 10:08:44 -05:00
Cole Mickens
28081b7689
libinput
2016-01-19 06:51:36 -08:00
Seth Barberee
fcd0071555
added basic zsh shell completion for sway, swaybg, and swaygrab
2016-01-17 22:06:26 -06:00
Drew DeVault
fe241126bb
Add ffmpeg/imagemagick to depenency list
2016-01-17 14:04:36 -05:00
Drew DeVault
2e570bbb90
Fix some leftover code
2016-01-17 13:16:36 -05:00
Drew DeVault
802233f3d0
Support for swaybg as a shell surface
...
This is a lot of work for a small payoff - the mouse cursor is now
correctly rendered over the background.
Containers can now specify a custom arrange function which will be
called during arrange_windows instead of the usual path for that
container type. For backgrounds, the function sends it to the back and
sets its geometry to the size of the screen.
This requires some changes I'm not too happy with in arrange_windows
with respect to how containers figure out the arrangemnet of their
children (special cases are undesirable).
Also, if anyone runs a debug build as their actual WM, you should know
that I've made it so swaybg is invoked as `./bin/swaybg` in debug builds
now.
This PR also includes a bunch of unrelated refactoring. This is a pretty
significant change and I can only test it under the x backend, so I'd
appreciate it if you kind folks would review+test it yourselves and
leave some 👍 if you like it.
2016-01-17 12:58:03 -05:00
Mikkel Oscar Lyderik
e0ba689dba
Copy filename from argv
...
Fix #449
2016-01-17 18:48:29 +01:00
Drew DeVault
2597321236
Merge pull request #445 from crondog/assign
...
cmd_assign
2016-01-15 04:51:23 -05:00
crondog
81caf89ff8
cmd_assign
...
This implements cmd_assign. Basically a copy and paste from
cmd_for_window however it has → handling and injects a `move container to
workspace`
2016-01-15 16:03:34 +11:00
Mikkel Oscar Lyderik
0ba3f08f52
Strip quotes from workspace name v2
...
This is a more general fix for #444
This reverts part of commit 222f0d44fc .
2016-01-11 03:42:45 +01:00
Mikkel Oscar Lyderik
fc8e5703a5
Strip quotes of each argv when handling command
2016-01-11 03:39:34 +01:00
Mikkel Oscar Lyderik
222f0d44fc
Strip quotes from workspace name.
...
Fix #444
This is a temporary fix, the real fix is to store the commands as a
formatted argv array, so they don't have to be reformatted all over the
place.
2016-01-11 03:13:36 +01:00
Drew DeVault
46992d6060
Merge pull request #443 from mikkeloscar/binding-event-input_code
...
Add bindcode to binding events.
2016-01-09 15:12:08 -05:00
Mikkel Oscar Lyderik
15621ea8ff
Add backwards compatability for binding event
2016-01-09 20:56:42 +01:00
Mikkel Oscar Lyderik
e3ddcaabc4
Add bindcode to binding events.
2016-01-09 20:31:18 +01:00
Mikkel Oscar Lyderik
93c93dd0f7
Make enable-binding-event option have an affect.
...
The option was added to late so it was never set in the build.
2016-01-09 20:25:45 +01:00
Drew DeVault
7388e1ecd8
Merge pull request #442 from mikkeloscar/bincode
...
Add support for bincode command
2016-01-09 12:10:37 -05:00
Mikkel Oscar Lyderik
f8b260d4a1
Add support for bincode command
...
If a bindsym and bincode maps to the same combination, the last one will
overwrite any previous mappings.
2016-01-09 18:07:47 +01:00
Drew DeVault
b4ea9d492c
Make wallpaper optional (cmake flag)
2016-01-08 18:49:42 -05:00
Mikkel Oscar Lyderik
cb8ac7fd4a
Unescape string after doing var replacement
...
Fix #426
2016-01-08 23:30:18 +01:00
Drew DeVault
e2d49afb4a
Merge pull request #438 from mikkeloscar/binding-event
...
Implement IPC binding event (keyboard)
2016-01-08 09:48:24 -05:00
Mikkel Oscar Lyderik
15cbc53a77
Make IPC binding event support a compile time opt.
2016-01-08 15:03:25 +01:00
Mikkel Oscar Lyderik
14147ac056
Reduce duplicate code
2016-01-08 14:27:41 +01:00