Package Details: sway-git 1.10.r7343.9704152-1

Git Clone URL: https://aur.archlinux.org/sway-git.git (read-only, click to copy)
Package Base: sway-git
Description: Tiling Wayland compositor and replacement for the i3 window manager (git development version)
Upstream URL: https://github.com/swaywm/sway
Keywords: compositor development git i3 manager sway tiling wayland window wlroots wm
Licenses: MIT
Conflicts: sway
Provides: sway
Submitter: None
Maintainer: GreyXor
Last Packager: GreyXor
Votes: 146
Popularity: 1.04
First Submitted: 2015-08-16 14:05 (UTC)
Last Updated: 2024-05-21 16:36 (UTC)

Required by (45)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 9 10 11 12 13 14 15 16 17 18 19 Next › Last »

habarnam commented on 2018-09-05 19:37 (UTC)

@HaoZeke tray is not ready in this version afaik, and there's no more swaygrab.

HaoZeke commented on 2018-09-04 05:15 (UTC)

Is there a reason this is built without tray icon support and swaygrab?

sum01 commented on 2018-08-27 22:57 (UTC)

It seems the issue (#1785) is still open upstream, so I assume the patch is still needed. That being said, it should probably be merged upstream if it's the actual fix, not kept to the AUR.

Sesese9 commented on 2018-08-27 02:00 (UTC)

Is the patch still needed? Considering the constant code churn in sway, I was wondering whether the issue this patch was made for has been fixed.

habarnam commented on 2018-08-14 08:32 (UTC) (edited on 2018-08-14 08:32 (UTC) by habarnam)

I made a small improvement to the postinstall script, as it fails to add the capabilities when updating the package:

$ cat sway-wlroots-git.install 
post_install() {
    post_upgrade
}
post_upgrade() {
    setcap 'cap_sys_admin,cap_sys_ptrace,cap_sys_tty_config=eip' usr/bin/sway
}

I've added the cap_sys_admin as when trying to run sway as systemd user session it complains about it missing.

baqtor commented on 2018-07-31 03:39 (UTC) (edited on 2018-08-03 19:28 (UTC) by baqtor)

Getting the following error while compiling: https://pastebin.com/FmPpdbat. EDIT: Fixed it updating wlroots-git.

NilsBrause commented on 2018-07-22 17:58 (UTC)

stepovic: libelogind is not necessary to run sway. Adding as an optional dependency. The error you are getting might come from an out-of-date wlroots-git.

stepovic commented on 2018-07-21 11:32 (UTC)

Got "Dependency libelogind found: NO" while building the package and an error about a missing "wlr/types/wlr_linux_dmabuf_v1.h" (in /sway/sway/server.c:14:10) while updating. The initial installation worked though.

nedludd commented on 2018-06-13 22:06 (UTC) (edited on 2018-06-13 22:13 (UTC) by nedludd)

I keep getting this:

/Stuff/trizen/sway-git/src/sway/sway/commands.c: In function ‘add_color’:
/Stuff/trizen/sway-git/src/sway/sway/commands.c:274:2: 
error: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Werror=stringop-truncation]
  strncpy(buffer, color, len);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Stuff/trizen/sway-git/src/sway/sway/commands.c:257:12: note: length computed here
  int len = strlen(color);
            ^~~~~~~~~~~~~