Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 02 Aug 2024 18:19:31 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 280574] x11-wm/lxqt-panel: broken panel clock
Message-ID:  <bug-280574-7788-AZ1TtdKU2B@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-280574-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-280574-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D280574

--- Comment #2 from Jesper Schmitz Mouridsen <jsm@FreeBSD.org> ---
Thanks, also see the root cause https://bugreports.qt.io/browse/QTBUG-1263.
You might be able to fix it be either setting your timezone with tzsetup or=
 by
setting TZ env manually..  We added logic in startlxqt to set TZ based on
/var/db/zoneinfo. But TZ is not set if you do not have a /var/db/zoneinfo
(written by tzsetup)
If you are UTC set TZ=3D"UTC" i guess..=20



if [ -f /var/db/zoneinfo ]; then TZ=3D`cat /var/db/zoneinfo`;
        cmp -s /usr/share/zoneinfo/$TZ /etc/localtime
        if [ $? -eq 0 ]; then
                export TZ=3D"${TZ}"
        fi
fi

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-280574-7788-AZ1TtdKU2B>