mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
507 B
Text
18 lines
507 B
Text
post_upgrade() {
|
|
if (( $(vercmp $2 1.16.0-3) < 0 )); then
|
|
post_install
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
cat <<MSG
|
|
>>> xorg-server has now the ability to run without root rights with
|
|
the help of systemd-logind. xserver will fail to run if not launched
|
|
from the same virtual terminal as was used to log in.
|
|
Without root rights, log files will be in ~/.local/share/xorg/ directory.
|
|
|
|
Old behavior can be restored through Xorg.wrap config file.
|
|
See Xorg.wrap man page (man xorg.wrap).
|
|
MSG
|
|
}
|
|
|