Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-18 | Use #if instead of #ifdef | emersion | |
2018-11-12 | Use #if instead of #ifdef for WLR_HAS_* | emersion | |
2018-10-27 | added fish completions for swaynag | madblobfish | |
2018-10-27 | added fish completions for swayidle | madblobfish | |
2018-10-17 | Set sysconfdir to /etc only if prefix is /usr | sghctoma | |
PR #2855 basically hardcodes the config file path to /etc, which is a problem on e.g. FreeBSD, where the expected path for config files of non-base software is '/usr/local/etc'. Meson sets sysconfdir to '/etc' explicitly only when prefix is '/usr', so it is still possible to use '/usr/local' as prefix, and install the config files under '/usr/local/etc'. This commit allows to do that by setting sysconfdir based on the value of prefix. | |||
2018-10-16 | Set SYSCONFDIR to /etc even when "prefix" is set | Niccolò Scatena | |
SYSCONFDIR should be "/etc" even when prefix="/usr" to be FHS compliant. This is the default in meson from v0.44. | |||
2018-10-16 | Revert "Fix SYSCONFDIR to include "prefix"" | Niccolò Scatena | |
This reverts commit 6942f5b6845b2cc572ec378365771a34caf50ba1. SYSCONFDIR should be "/etc" even when prefix="/usr" to be FHS compliant. This is the default in meson from v0.44. | |||
2018-10-14 | Establish sway-output(5) | Drew DeVault | |
2018-10-06 | Fix swaylock w/shadow on glibc, improve security | Drew DeVault | |
Today I learned that GNU flaunts the POSIX standard in yet another creative way. Additionally, this adds some security improvements, namely: - Zeroing out password buffers in the privileged child process - setuid/setgid after reading /etc/shadow | |||
2018-09-30 | Add support for installing binaries with DT_RPATH | Arkadiusz Hiler | |
It's better to use DT_RPATH dynamic section of the elf binary to store the paths of libraries to load instead of overwriting LD_LIBRARY_PATH for the whole environment, causing surprises. This solution is much more transparent and perfectly suitable for running contained installations of wayland/wlroots/sway. The code unsetting the LD_LIBRARY_PATH/LD_PRELOAD was also deleted as it's a placebo security at best - we should trust the execution path that leads us to running sway, and it's way too late to care about those variables since we already started executing our compositor, thus we would be compromised anyway. | |||
2018-09-30 | Remove libcap/prctl artifacts | Arkadiusz Hiler | |
They seem like relics of the pasts, from when we were retaining the ptrace cap. Some translations still may need updates. | |||
2018-09-28 | Add support for building swaylock without PAM | Drew DeVault | |
This involves setuid'ing swaylock, which then forks and drops perms on the parent process. The child process remains root and listens on a pipe for requests to validate passwords against /etc/shadow. | |||
2018-09-26 | Add _C11_SOURCE feature test macro on FreeBSD | sghctoma | |
This will restrict the default namespace set on FreeBSD to the C11 standard (everything is visible by default), which will prevent possible conflicts with symbols hidden behing __BSD_VISIBLE. | |||
2018-09-26 | Make libpam optional | Drew DeVault | |
2018-09-03 | Merge remote-tracking branch 'upstream/master' into fix-freebsd-build | sghctoma | |
2018-09-02 | Add ld-library-path meson option | Ryan Dwyer | |
2018-09-02 | Use dashes in meson option names | Ryan Dwyer | |
2018-08-30 | Fix SYSCONFDIR to include "prefix" | sghctoma | |
SYSCONFDIR is used to determine the path of the default configuration file. 'sysconfdir' is set to 'prefix/sysconfdir' later (on line 139), so configuration files are installed under 'prefix', but SYSCONFDIR did not reflect it. | |||
2018-08-30 | Make libcap an optional dependency | sghctoma | |
FreeBSD does not have libcap, so without "required: false" Sway fails to build. | |||
2018-08-27 | Hide deprecated wayland functions | Scott Anderson | |
2018-08-26 | added fish to meson.build | Martin Kalchev | |
2018-08-02 | Merge branch 'master' into nagbar | Ryan Dwyer | |
2018-08-02 | Link xcb dependency to meson options "enable_xwayland" (#2393) | Michel Ganguin | |
* Link xcb dependency to meson options "enable_xwayland" * Link xcb dependency to meson options "enable_xwayland" | |||
2018-08-01 | swaynag: implement config file support | Brian Ashworth | |
2018-08-01 | Address first round review for swaynag | Brian Ashworth | |
2018-08-01 | Implements swaynagbar | Brian Ashworth | |
2018-07-30 | Merge pull request #2387 from 1ace/feature/bash-completion | Drew DeVault | |
bash completion | |||
2018-07-30 | delete references to swaygrab | Eric Engestrom | |
2018-07-30 | meson: install bash completion | Eric Engestrom | |
2018-07-29 | Enable unstable wlroots features | Drew DeVault | |
2018-07-24 | style fixes, exclude sway/desctop/xwayland.c when enable_xwayland: false | Pascal Pascher | |
2018-07-24 | Added meson option "enable_xwayland" (default: true) to enable/disable ↵ | Pascal Pascher | |
xwayland support | |||
2018-06-18 | Automatically float xwayland windows | emersion | |
2018-05-20 | Swaylock: Allow per-output images | Ryan Dwyer | |
2018-05-13 | Idle handling for dpms/lockscreen et al | Mattias Eriksson | |
Swayidle handles idle events and allows for dpms and lockscreen handling. It also handles systemd sleep events, and can raise a lockscreen on sleep Fixes #541 | |||
2018-05-11 | Add swaylock(1) and swaymsg(1) | Drew DeVault | |
2018-05-11 | Add sway-input(5) | Drew DeVault | |
2018-05-11 | Add sway-bar(5) | Drew DeVault | |
2018-05-11 | Add sway(5) | Drew DeVault | |
2018-05-11 | Wire up scdoc and rewrite sway(1) | Drew DeVault | |
2018-05-06 | meson.build: Look for '-lpam', not '-llibpam'. | Yorick van Pelt | |
See #1920 for more information. | |||
2018-04-08 | Improve dependency checks | Bruno Pinto | |
2018-04-05 | Add -Wno-unused-result | Drew DeVault | |
Fixes #1744 | |||
2018-04-04 | Initial swaylock port | Drew DeVault | |
2018-03-30 | Initialize seat pointer in swaybar | Drew DeVault | |
2018-03-29 | Start port of swaybar to layer shell | Drew DeVault | |
This starts up the event loop and wayland display and shims out the basic top level rendering concepts. Also includes some changes to incorporate pango into the 1.x codebase properly. | |||
2018-03-28 | Address review comments | Drew DeVault | |
2018-03-28 | Add solid-color rendering to swaybg | Drew DeVault | |
2018-03-28 | Add client protocols and swaybg skeleton | Drew DeVault | |
2018-03-15 | meson: allow wlroots to be a subproject | emersion | |