aboutsummarylogtreecommitdiffstats
path: root/sway.install
blob: 1eff5bcae116b6f367d67759f8b0686b1acecb0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
post_install() {
cat << EOD
Sway requires additional setup for privilege escalation. Without this setup,
sway will fail to start with session activation permission failures. Choose one
of the two available options (In alphabetical, not recommended, order):

1. polkit: This will make sway "just work" right after installation but may be
           a weightier solution than desired.

2. seatd: Already required as a sway dependency, this is a lighter-weight
          solution but requires some user configuration: Enabling the service,
          adding your user to the "seat" group, then logging out/in again.

Either option should provide the same functionality/stability. Refer to the
Sway wiki page for information.
EOD

    setcap cap_sys_nice+ep usr/bin/sway
}

post_upgrade() {
    setcap cap_sys_nice+ep usr/bin/sway
}