unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0.
@ 2021-05-16 14:04 Brendan Tildesley via Guix-patches via
  2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
  2021-05-29 18:17 ` bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès
  0 siblings, 2 replies; 38+ messages in thread
From: Brendan Tildesley via Guix-patches via @ 2021-05-16 14:04 UTC (permalink / raw)
  To: 48465

[-- Attachment #1: Type: text/plain, Size: 1561 bytes --]

I don't use lxqt but I tested it in a VM and it seems to work and look just like it did before.

list of packages updated:

lxqt
lxqt-connman-applet
lxqt-openssh-askpass
qps
compton-conf
lxqt-archiver
screengrab
qterminal
qtermwidget
pavucontrol-qt
obconf-qt
lximage-qt
pcmanfm-qt
lxqt-themes
lxqt-sudo
lxqt-session
lxqt-runner
lxqt-powermanagement
lxqt-policykit
lxqt-panel
lxqt-notificationd
lxqt-globalkeys
lxqt-config
lxqt-admin
lxqt-about
libsysstat
liblxqt
libqtxdg
lxqt-build-tools
lxqt-qtplugin
libfm-qt


Here is a VM that autologs in to lxqt

run: $(./pre-inst-env guix system vm ./lxqt-os.scm) -m 1G

(use-modules (gnu)
(srfi srfi-1))
(use-service-modules desktop xorg sddm)
(operating-system
(bootloader (grub-configuration))
(file-systems %base-file-systems)
(locale "en_AU.utf8")
(timezone "Australia/Hobart")
(keyboard-layout (keyboard-layout "us"  "qwerty"))
(host-name "jiu")
(users (cons* (user-account
(name "b")
(password (crypt "b" "$6$abc")) ;; password "b"
(comment "Brendan")
(group "users")
(home-directory "/home/b")
(supplementary-groups
'("wheel" "netdev" "audio" "video" "kvm")))
%base-user-accounts))
(packages
(append
(map specification->package '("nss-certs"))
%base-packages))
(services
(append
(list (set-xorg-configuration
(xorg-configuration
(keyboard-layout keyboard-layout))
sddm-service-type)

(service lxqt-desktop-service-type)
(service sddm-service-type (sddm-configuration
(auto-login-user "b")
(auto-login-session "lxqt.desktop"))))
(remove (lambda (s) (eqv? (service-kind s) gdm-service-type))
%desktop-services))))

[-- Attachment #2: Type: text/html, Size: 4577 bytes --]

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2021-05-29 18:19 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16 14:04 [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Brendan Tildesley via Guix-patches via
2021-05-16 14:05 ` [bug#48465] [PATCH 01/35] gnu: libfm-qt: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 02/35] gnu: lxqt-qtplugin: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 03/35] gnu: lxqt-build-tools: Update to 0.9.0 Brendan Tildesley
2021-05-29 18:18     ` [bug#48465] [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès
2021-05-16 14:05   ` [bug#48465] [PATCH 04/35] gnu: libqtxdg: Update to 3.7.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 05/35] gnu: liblxqt: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 06/35] gnu: libsysstat: Update to 0.4.5 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 07/35] gnu: lxqt-about: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 08/35] gnu: lxqt-admin: " Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 09/35] gnu: lxqt-config: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 10/35] gnu: lxqt-globalkeys: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 11/35] gnu: lxqt-notificationd: " Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 12/35] gnu: lxqt-panel: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 13/35] gnu: lxqt-policykit: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:05   ` [bug#48465] [PATCH 14/35] gnu: lxqt-powermanagement: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 15/35] gnu: lxqt-runner: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 16/35] gnu: lxqt-session: Update to 0.17.1 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 17/35] gnu: lxqt-sudo: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 18/35] gnu: lxqt-themes: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 19/35] gnu: pcmanfm-qt: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 20/35] gnu: lximage-qt: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 21/35] gnu: obconf-qt: Update to 0.16.1 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 22/35] gnu: pavucontrol-qt: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 23/35] gnu: qtermwidget: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 24/35] gnu: qterminal: " Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 25/35] gnu: screengrab: Update to 2.2.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 26/35] gnu: lxqt-archiver: Update to 0.4.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 27/35] gnu: compton-conf: Update to 0.16.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 28/35] gnu: qps: Update to 2.3.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 29/35] gnu: lxqt-openssh-askpass: Update to 0.17.0 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 30/35] gnu: lxqt-connman-applet: Update to 0.15-db1618d5 Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 31/35] gnu: lxqt: Use the projects version number Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 32/35] gnu: lxqt: Use picom instead of compton Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 33/35] gnu: lxqt-config: Move libkscreen to propagated-inputs Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 34/35] gnu: Update lxqt home-page for all lxqt packages Brendan Tildesley
2021-05-16 14:06   ` [bug#48465] [PATCH 35/35] doc: lxqt-desktop-service: Update lxqt homepage url Brendan Tildesley
2021-05-29 18:17 ` bug#48465: [PATCHES 0/35] gnu: lxqt: Update to 0.17.0 Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).